diff --git a/CHANGELOG.md b/CHANGELOG.md index 6252bfbd..62bc7258 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.11.0] - 2024-09-19 ### Changes - (Breaking) Removed Fonts and replaced with iced_fonts. diff --git a/Cargo.lock b/Cargo.lock index 5c93dc08..dd706702 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1425,7 +1425,7 @@ dependencies = [ [[package]] name = "iced_aw" -version = "0.10.0" +version = "0.11.0" dependencies = [ "cfg-if", "chrono", diff --git a/Cargo.toml b/Cargo.toml index e9532577..674c38b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iced_aw" -version = "0.10.0" +version = "0.11.0" authors = [ "Kaiden42 ", "Andrew Wheeler ", diff --git a/README.md b/README.md index 3d997a8c..5d08a3ed 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Include `iced_aw` as a dependency in your `Cargo.toml`: ```toml [dependencies] iced = "0.13.0" -iced_aw = { version = "0.10.0", default-features = false, features = [...] } +iced_aw = { version = "0.11.0", default-features = false, features = [...] } ``` ## Versioning @@ -25,7 +25,7 @@ iced_aw = { version = "0.10.0", default-features = false, features = [...] } | -------------- | ----------------- | | 0.10 | 0.7 | | 0.12 | 0.9 | -| 0.13 | 0.10 | +| 0.13 | 0.10, 0.11 | ## Widgets @@ -161,10 +161,6 @@ Enable Sidebar with the feature `sidebar`. Also included in this feature, are two widgets `sidebar::column::FlushColumn` and `sidebar::row::FlushRow` that flushes the end/start element to the opposite direction to the alignment of the container. -## Quickstart features - -Quickstart features are pretty handy to start and experiment having everything like colors or icons available. Nevertheless, it is recommended to disable these features once the GUI is ready for production and to only include the things you really need. - ### Color palette This crate adds a predefined color palette based on the [CSS color palette](https://www.w3schools.com/cssref/css_colors.asp).