From 2dd28c3cd564b5ac75d28546f5719a8ff73300d4 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Thu, 1 Feb 2024 23:38:10 +0800 Subject: [PATCH] v0.2.0-alpha --- CHANGELOG.md | 16 ++++++++++++++++ thaw/Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1852b53..a83d841 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +## [0.2.0-alpha](https://github.com/thaw-ui/thaw/compare/v0.1.10...v0.2.0-alpha) (2024-02-01) + +### Breaking Changes + +* Remove the default feature of csr. +* `ButtonVariant::Solid` is changed to `ButtonVariant::Outlined`. +* Change icondata to icondata_core. +* Rewrite `Code` component. +* Update leptos to v0.6.5. + +### Features + +* Change `RwSignal` to `Model`. +* Change `#[prop(optional)] T` to `#[prop(optional)] OptionalProp`. +* `Checkbox` children can be empty. + ## [0.1.10](https://github.com/thaw-ui/thaw/compare/v0.1.9...v0.1.10) (2024-01-31) ### Features diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index 9170c36..f192742 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.1.10" +version = "0.2.0-alpha" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md"