Skip to content

Commit

Permalink
Implements Data trait for i128 and u128 (#1214)
Browse files Browse the repository at this point in the history
* Implements Data trait for i128 and u128

* Changelog changes for #1214

* Fixes typo in Changelog

Changes changelog according to contribution guidelines.

* Fixes links in changelog
  • Loading branch information
koutoftimer authored Sep 11, 2020
1 parent 5792414 commit fae1353
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ You can find its changes [documented below](#060---2020-06-01).
- `Menu` commands can now choose a custom target. ([#1185] by [@finnerale])
- `Movement::StartOfDocument`, `Movement::EndOfDocument`. ([#1092] by [@sysint64])
- `TextLayout` type simplifies drawing text ([#1182] by [@cmyr])
- Implementation of `Data` trait for `i128` and `u128` primitive data types. ([#1214] by [@koutoftimer])

### Changed

Expand Down Expand Up @@ -287,6 +288,7 @@ Last release without a changelog :(
[@sysint64]: https://github.com/sysint64
[@justinmoon]: https://github.com/justinmoon
[@rjwittams]: https://github.com/rjwittams
[@koutoftimer]: https://github.com/koutoftimer

[#599]: https://github.com/linebender/druid/pull/599
[#611]: https://github.com/linebender/druid/pull/611
Expand Down Expand Up @@ -427,6 +429,7 @@ Last release without a changelog :(
[#1092]: https://github.com/linebender/druid/pull/1092
[#1204]: https://github.com/linebender/druid/pull/1204
[#1205]: https://github.com/linebender/druid/pull/1205
[#1214]: https://github.com/linebender/druid/pull/1214

[Unreleased]: https://github.com/linebender/druid/compare/v0.6.0...master
[0.6.0]: https://github.com/linebender/druid/compare/v0.5.0...v0.6.0
Expand Down
2 changes: 2 additions & 0 deletions druid/src/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,13 @@ impl_data_simple!(i8);
impl_data_simple!(i16);
impl_data_simple!(i32);
impl_data_simple!(i64);
impl_data_simple!(i128);
impl_data_simple!(isize);
impl_data_simple!(u8);
impl_data_simple!(u16);
impl_data_simple!(u32);
impl_data_simple!(u64);
impl_data_simple!(u128);
impl_data_simple!(usize);
impl_data_simple!(char);
impl_data_simple!(bool);
Expand Down

0 comments on commit fae1353

Please sign in to comment.