From c0599acbe9b071280e8a72723ae4eaf23cfc0639 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Sun, 31 Mar 2024 23:46:16 +0800 Subject: [PATCH] 0.2.6 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 4 ++-- README.md | 2 +- thaw/Cargo.toml | 2 +- thaw_components/Cargo.toml | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed54ea6..2c80097 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [0.2.6](https://github.com/thaw-ui/thaw/compare/v0.2.5...v0.2.6) (2024-03-31) + +### Features + +* Optimize `Switch` styles. +* `Message` adds animation. +* thaw_components: `CSSTransition` adds appear, on_before_enter, on_before_leave and on_leave prop. + +### Bug Fixs + +* `Button` wave flicker problem. + ## [0.2.5](https://github.com/thaw-ui/thaw/compare/v0.2.3...v0.2.5) (2024-03-20) ### Features diff --git a/Cargo.toml b/Cargo.toml index 57362c3..f8cf9ce 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.2.5", path = "./thaw" } -thaw_components = { version = "0.0.1", path = "./thaw_components" } +thaw = { version = "0.2.6", path = "./thaw" } +thaw_components = { version = "0.0.2", path = "./thaw_components" } thaw_utils = { version = "0.0.1", path = "./thaw_utils" } diff --git a/README.md b/README.md index 67db993..d5b721f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ | Crate version | Compatible Leptos version | | ------------- | ------------------------- | | 0.1 | 0.5 | -| 0.2.0 | 0.6 | +| 0.2 | 0.6 | ## Resources diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index 30a9762..11e41a6 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.2.5" +version = "0.2.6" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index b1f705c..957acc3 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_components" -version = "0.0.1" +version = "0.0.2" edition = "2021" keywords = ["leptos", "thaw", "components"] readme = "../README.md"