From ec13698a250d5172675ef80db3fd80ba2272ab74 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Wed, 20 Mar 2024 16:39:07 +0800 Subject: [PATCH] v0.2.4 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.toml | 2 +- thaw/Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2da9c5..cf01b0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## [0.2.4](https://github.com/thaw-ui/thaw/compare/v0.2.3...v0.2.4) (2024-03-20) + +### Features + +* Added thaw_components library. +* Added thaw_utils library. +* Update leptos to v0.6.9. +* `Button` adds block prop. +* `ButtonGroup` adds class prop. +* `Tag` adds closable and on_close prop. +* `AutoComplete` adds blur_after_select prop. +* `Space` adds align and justify prop. + +### Bug Fixs + +* `Toast` cfg in ssr mode. +* `CSSTransition` leakage in the next_frame function. +* `Icon` rendering problem in ssr mode. + ## [0.2.3](https://github.com/thaw-ui/thaw/compare/v0.2.2...v0.2.3) (2024-03-07) ### Features diff --git a/Cargo.toml b/Cargo.toml index 1f169a8..8440f82 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.3", path = "./thaw" } +thaw = { version = "0.2.4", path = "./thaw" } thaw_components = { version = "0.0.1", path = "./thaw_components" } thaw_utils = { version = "0.0.1", path = "./thaw_utils" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index a391b9b..3be7248 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.2.3" +version = "0.2.4" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md"