diff --git a/CHANGELOG.md b/CHANGELOG.md index 08d75ca..b11da24 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [0.3.2](https://github.com/thaw-ui/thaw/compare/v0.3.1...v0.3.2) (2024-05-21) + +### Features + +* `Switch` adds on_change prop, closes [#196](https://github.com/thaw-ui/thaw/pull/196). + +### Bug Fixs + +* `Image` object-fit, closes [#195](https://github.com/thaw-ui/thaw/pull/195). +* `Icon` missaligment in message fix, closes [#194](https://github.com/thaw-ui/thaw/pull/194). +* fix `Scrollbar` panic, closes [#193](https://github.com/thaw-ui/thaw/pull/193). +* interchange the icons of MessageVariant::Success and MessageVariant::Error, closes [#188](https://github.com/thaw-ui/thaw/pull/188). + ## [0.3.1](https://github.com/thaw-ui/thaw/compare/v0.3.0...v0.3.1) (2024-04-27) ### Features diff --git a/Cargo.toml b/Cargo.toml index 72f1c9a..240345e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"] exclude = ["examples"] [workspace.dependencies] -thaw = { version = "0.3.1", path = "./thaw" } -thaw_components = { version = "0.1.1", path = "./thaw_components" } -thaw_utils = { version = "0.0.3", path = "./thaw_utils" } +thaw = { version = "0.3.2", path = "./thaw" } +thaw_components = { version = "0.1.2", path = "./thaw_components" } +thaw_utils = { version = "0.0.4", path = "./thaw_utils" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index 1e7b58a..3133fbb 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.3.1" +version = "0.3.2" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index ae140ba..997fe70 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_components" -version = "0.1.1" +version = "0.1.2" edition = "2021" keywords = ["leptos", "thaw", "components"] readme = "../README.md" diff --git a/thaw_utils/Cargo.toml b/thaw_utils/Cargo.toml index ad14846..f5182ec 100644 --- a/thaw_utils/Cargo.toml +++ b/thaw_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_utils" -version = "0.0.3" +version = "0.0.4" edition = "2021" keywords = ["leptos", "thaw", "utils"] readme = "../README.md"