diff options
author | 2023-02-18 12:04:40 +0100 | |
---|---|---|
committer | 2023-02-18 12:04:40 +0100 | |
commit | 0d1656937b459237670cdc0b1f45e09d78c47494 (patch) | |
tree | d52a0de030edd599f5863d24caa5854a38b80189 /CHANGELOG.md | |
parent | c6218cbc5532551456c0491eb5aa66dfc5f36879 (diff) | |
download | iced-0d1656937b459237670cdc0b1f45e09d78c47494.tar.gz iced-0d1656937b459237670cdc0b1f45e09d78c47494.tar.bz2 iced-0d1656937b459237670cdc0b1f45e09d78c47494.zip |
Bump versions :tada:
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 53 |
1 files changed, 52 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d3e7641b..1d9d1fb3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,56 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0] - 2023-02-18 +### Added +- Generic pixel units. [#1711](https://github.com/iced-rs/iced/pull/1711) +- `custom` method to `widget::Operation` trait. [#1649](https://github.com/iced-rs/iced/pull/1649) +- `Group` overlay. [#1655](https://github.com/iced-rs/iced/pull/1655) +- Standalone `draw` helper for `image`. [#1682](https://github.com/iced-rs/iced/pull/1682) +- Dynamic `pick_list::Handle`. [#1675](https://github.com/iced-rs/iced/pull/1675) +- `Id` support for `Container`. [#1695](https://github.com/iced-rs/iced/pull/1695) +- Custom `Checkbox` icon support. [#1707](https://github.com/iced-rs/iced/pull/1707) +- `window` action to change always on top setting. [#1587](https://github.com/iced-rs/iced/pull/1587) +- `window` action to fetch its unique identifier. [#1589](https://github.com/iced-rs/iced/pull/1589) + +### Changed +- Annotated `Command` and `Subscription` with `#[must_use]`. [#1676](https://github.com/iced-rs/iced/pull/1676) +- Replaced `Fn` with `FnOnce` in `canvas::Cache::draw`. [#1694](https://github.com/iced-rs/iced/pull/1694) +- Used `[default]` on enum in `game_of_life` example. [#1660](https://github.com/iced-rs/iced/pull/1660) +- Made `QRCode` hide when data is empty in `qr_code` example. [#1665](https://github.com/iced-rs/iced/pull/1665) +- Replaced `Cow` with `Bytes` in `image` to accept any kind of data that implements `AsRef<[u8]>`. [#1551](https://github.com/iced-rs/iced/pull/1551) + +### Fixed +- Blank window on application startup. [#1698](https://github.com/iced-rs/iced/pull/1698) +- Off-by-one pixel error on `pick_list` width. [#1679](https://github.com/iced-rs/iced/pull/1679) +- Missing `text_input` implementation in `operation::Map`. [#1678](https://github.com/iced-rs/iced/pull/1678) +- Widget-driven animations for `Component`. [#1685](https://github.com/iced-rs/iced/pull/1685) +- Layout translation in `overlay::Group`. [#1686](https://github.com/iced-rs/iced/pull/1686) +- Missing `is_over` implementation for overlays of `iced_lazy` widgets. [#1699](https://github.com/iced-rs/iced/pull/1699) +- Panic when overlay event processing removes overlay. [#1700](https://github.com/iced-rs/iced/pull/1700) +- Panic when using operations with components in certain cases. [#1701](https://github.com/iced-rs/iced/pull/1701) +- `TextInput` width when using padding. [#1706](https://github.com/iced-rs/iced/pull/1706) +- `iced_glow` crash on some hardware. [#1703](https://github.com/iced-rs/iced/pull/1703) +- Height of `overlay::Menu`. [#1714](https://github.com/iced-rs/iced/pull/1714) +- Size of images in `README`. [#1659](https://github.com/iced-rs/iced/pull/1659) +- New `clippy` lints. [#1681](https://github.com/iced-rs/iced/pull/1681) + +Many thanks to... + +- @13r0ck +- @bungoboingo +- @casperstorm +- @frey +- @greatest-ape +- @ids1024 +- @Jedsek +- @nicksenger +- @Night-Hunter-NF +- @sdroege +- @Sn-Kinos +- @sushigiri +- @tarkah + ## [0.7.0] - 2023-01-14 ### Added - Widget-driven animations. [#1647](https://github.com/iced-rs/iced/pull/1647) @@ -364,7 +414,8 @@ Many thanks to... ### Added - First release! :tada: -[Unreleased]: https://github.com/iced-rs/iced/compare/0.7.0...HEAD +[Unreleased]: https://github.com/iced-rs/iced/compare/0.8.0...HEAD +[0.8.0]: https://github.com/iced-rs/iced/compare/0.7.0...0.8.0 [0.7.0]: https://github.com/iced-rs/iced/compare/0.6.0...0.7.0 [0.6.0]: https://github.com/iced-rs/iced/compare/0.5.0...0.6.0 [0.5.0]: https://github.com/iced-rs/iced/compare/0.4.2...0.5.0 |