diff --git a/CHANGELOG.md b/CHANGELOG.md index 329bc97f..4771d026 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## [0.3.4](https://github.com/thaw-ui/thaw/compare/v0.3.3...v0.3.4) (2024-09-11) + +### Features + +* Adds `Flex` component. +* Update leptos to v0.6.14. + +### Bug Fixs + +* Allow creating custom theme [#242](https://github.com/thaw-ui/thaw/pull/242). +* `CheckboxGroup` does not display default value. +* `Binder` component display position. + ## [0.3.3](https://github.com/thaw-ui/thaw/compare/v0.3.2...v0.3.3) (2024-07-15) ### Features diff --git a/Cargo.toml b/Cargo.toml index 9dc52ff6..6a675d0b 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.3", path = "./thaw" } -thaw_components = { version = "0.1.3", path = "./thaw_components" } -thaw_utils = { version = "0.0.5", path = "./thaw_utils" } +thaw = { version = "0.3.4", path = "./thaw" } +thaw_components = { version = "0.1.4", path = "./thaw_components" } +thaw_utils = { version = "0.0.6", path = "./thaw_utils" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index 7c328828..6bd6a2e2 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.3.3" +version = "0.3.4" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index 5b24cfc6..44c121bf 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_components" -version = "0.1.3" +version = "0.1.4" edition = "2021" keywords = ["leptos", "thaw", "components"] readme = "../README.md" diff --git a/thaw_utils/Cargo.toml b/thaw_utils/Cargo.toml index 15703abc..0ed27cf5 100644 --- a/thaw_utils/Cargo.toml +++ b/thaw_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_utils" -version = "0.0.5" +version = "0.0.6" edition = "2021" keywords = ["leptos", "thaw", "utils"] readme = "../README.md"