From 2382b8f7795ee306713c8b101aa6128664d4b3ee Mon Sep 17 00:00:00 2001 From: luoxiao Date: Sat, 14 Sep 2024 00:05:25 +0800 Subject: [PATCH] v0.4.0-beta3 --- CHANGELOG.md | 21 +++++++++++++++++++++ Cargo.toml | 8 ++++---- thaw/Cargo.toml | 2 +- thaw_components/Cargo.toml | 2 +- thaw_macro/Cargo.toml | 2 +- thaw_utils/Cargo.toml | 2 +- 6 files changed, 29 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf81549..30e1c42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +## [0.4.0-beta3](https://github.com/thaw-ui/thaw/compare/v0.4.0-beta2...v0.4.0-beta3) (2024-09-13) + +### Features + +* Adss `Flex` component. +* Adss `TagPicker` component. +* `Spinner` adds children prop. + +### Bug Fixs + +* `AnchorLink` outline. +* `SliderLabel` position. +* `NavDrawer` selected category value error. +* Adjust the z-index of the Binder popup. +* Binder component display position. + +### Breaking Changes + +* Change Tag's closable to dismissible. +* Update leptos to v0.7.0-beta5. + ## [0.3.4](https://github.com/thaw-ui/thaw/compare/v0.3.3...v0.3.4) (2024-09-11) ### Features diff --git a/Cargo.toml b/Cargo.toml index 78cda56..7b54b16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,10 +11,10 @@ members = [ exclude = ["examples"] [workspace.dependencies] -thaw = { version = "0.4.0-beta2", path = "./thaw" } -thaw_components = { version = "0.2.0-beta2", path = "./thaw_components" } -thaw_macro = { version = "0.1.0-beta2", path = "./thaw_macro" } -thaw_utils = { version = "0.1.0-beta2", path = "./thaw_utils" } +thaw = { version = "0.4.0-beta3", path = "./thaw" } +thaw_components = { version = "0.2.0-beta3", path = "./thaw_components" } +thaw_macro = { version = "0.1.0-beta3", path = "./thaw_macro" } +thaw_utils = { version = "0.1.0-beta3", path = "./thaw_utils" } leptos = { version = "0.7.0-beta5" } leptos_meta = { version = "0.7.0-beta5" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index 65d51af..4132d35 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.4.0-beta2" +version = "0.4.0-beta3" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index 6e2797c..45c8df4 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_components" -version = "0.2.0-beta2" +version = "0.2.0-beta3" edition = "2021" keywords = ["leptos", "thaw", "components"] readme = "../README.md" diff --git a/thaw_macro/Cargo.toml b/thaw_macro/Cargo.toml index f844f79..9fc5fa5 100644 --- a/thaw_macro/Cargo.toml +++ b/thaw_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_macro" -version = "0.1.0-beta2" +version = "0.1.0-beta3" edition = "2021" keywords = ["leptos", "thaw", "macro"] readme = "../README.md" diff --git a/thaw_utils/Cargo.toml b/thaw_utils/Cargo.toml index 2d0c7f2..27982db 100644 --- a/thaw_utils/Cargo.toml +++ b/thaw_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_utils" -version = "0.1.0-beta2" +version = "0.1.0-beta3" edition = "2021" keywords = ["leptos", "thaw", "utils"] readme = "../README.md"