Bump version to 0.13.1 🎉
This commit is contained in:
parent
6bed89973d
commit
bf3b6f100d
2 changed files with 31 additions and 13 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
|
@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.13.1] - 2024-09-19
|
||||||
|
### Added
|
||||||
|
- Some `From` trait implementations for `text_input::Id`. [#2582](https://github.com/iced-rs/iced/pull/2582)
|
||||||
|
- Custom `Executor` support for `Application` and `Daemon`. [#2580](https://github.com/iced-rs/iced/pull/2580)
|
||||||
|
- `rust-version` metadata to `Cargo.toml`. [#2579](https://github.com/iced-rs/iced/pull/2579)
|
||||||
|
- Widget examples to API reference. [#2587](https://github.com/iced-rs/iced/pull/2587)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Inverted scrolling direction with trackpad in `scrollable`. [#2583](https://github.com/iced-rs/iced/pull/2583)
|
||||||
|
- `scrollable` transactions when `on_scroll` is not set. [#2584](https://github.com/iced-rs/iced/pull/2584)
|
||||||
|
- Incorrect text color styling in `text_editor` widget. [#2586](https://github.com/iced-rs/iced/pull/2586)
|
||||||
|
|
||||||
|
Many thanks to...
|
||||||
|
- @dcampbell24
|
||||||
|
- @lufte
|
||||||
|
- @mtkennerly
|
||||||
|
|
||||||
## [0.13.0] - 2024-09-18
|
## [0.13.0] - 2024-09-18
|
||||||
### Added
|
### Added
|
||||||
- Introductory chapters to the [official guide book](https://book.iced.rs/).
|
- Introductory chapters to the [official guide book](https://book.iced.rs/).
|
||||||
|
|
@ -971,7 +988,8 @@ Many thanks to...
|
||||||
### Added
|
### Added
|
||||||
- First release! :tada:
|
- First release! :tada:
|
||||||
|
|
||||||
[Unreleased]: https://github.com/iced-rs/iced/compare/0.13.0...HEAD
|
[Unreleased]: https://github.com/iced-rs/iced/compare/0.13.1...HEAD
|
||||||
|
[0.13.1]: https://github.com/iced-rs/iced/compare/0.13.0...0.13.1
|
||||||
[0.13.0]: https://github.com/iced-rs/iced/compare/0.12.1...0.13.0
|
[0.13.0]: https://github.com/iced-rs/iced/compare/0.12.1...0.13.0
|
||||||
[0.12.1]: https://github.com/iced-rs/iced/compare/0.12.0...0.12.1
|
[0.12.1]: https://github.com/iced-rs/iced/compare/0.12.0...0.12.1
|
||||||
[0.12.0]: https://github.com/iced-rs/iced/compare/0.10.0...0.12.0
|
[0.12.0]: https://github.com/iced-rs/iced/compare/0.10.0...0.12.0
|
||||||
|
|
|
||||||
24
Cargo.toml
24
Cargo.toml
|
|
@ -117,7 +117,7 @@ members = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.13.0"
|
version = "0.13.1"
|
||||||
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
|
authors = ["Héctor Ramón Jiménez <hector@hecrj.dev>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
@ -128,17 +128,17 @@ keywords = ["gui", "ui", "graphics", "interface", "widgets"]
|
||||||
rust-version = "1.80"
|
rust-version = "1.80"
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
iced = { version = "0.13.0", path = "." }
|
iced = { version = "0.13", path = "." }
|
||||||
iced_core = { version = "0.13.0", path = "core" }
|
iced_core = { version = "0.13", path = "core" }
|
||||||
iced_futures = { version = "0.13.0", path = "futures" }
|
iced_futures = { version = "0.13", path = "futures" }
|
||||||
iced_graphics = { version = "0.13.0", path = "graphics" }
|
iced_graphics = { version = "0.13", path = "graphics" }
|
||||||
iced_highlighter = { version = "0.13.0", path = "highlighter" }
|
iced_highlighter = { version = "0.13", path = "highlighter" }
|
||||||
iced_renderer = { version = "0.13.0", path = "renderer" }
|
iced_renderer = { version = "0.13", path = "renderer" }
|
||||||
iced_runtime = { version = "0.13.0", path = "runtime" }
|
iced_runtime = { version = "0.13", path = "runtime" }
|
||||||
iced_tiny_skia = { version = "0.13.0", path = "tiny_skia" }
|
iced_tiny_skia = { version = "0.13", path = "tiny_skia" }
|
||||||
iced_wgpu = { version = "0.13.0", path = "wgpu" }
|
iced_wgpu = { version = "0.13", path = "wgpu" }
|
||||||
iced_widget = { version = "0.13.0", path = "widget" }
|
iced_widget = { version = "0.13", path = "widget" }
|
||||||
iced_winit = { version = "0.13.0", path = "winit" }
|
iced_winit = { version = "0.13", path = "winit" }
|
||||||
|
|
||||||
async-std = "1.0"
|
async-std = "1.0"
|
||||||
bitflags = "2.0"
|
bitflags = "2.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue