From 95abde2b9d39012ac939892f14ae8514ba65aa48 Mon Sep 17 00:00:00 2001 From: luoxiao Date: Sun, 14 Apr 2024 00:41:57 +0800 Subject: [PATCH] v0.3.0 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- README.md | 2 +- thaw/Cargo.toml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4c7472..37bd289 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [0.3.0](https://github.com/thaw-ui/thaw/compare/v0.3.0-beta...v0.3.0) (2024-04-14) + +### Features + +* `Popover` adds tooltip prop. + +### Bug Fixs + +* ssr mode `Input` default value. + ## [0.3.0-beta](https://github.com/thaw-ui/thaw/compare/v0.3.0-alpha...v0.3.0-beta) (2024-04-10) ### Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index e421122..8fd2270 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.0-beta", path = "./thaw" } +thaw = { version = "0.3.0", path = "./thaw" } thaw_components = { version = "0.1.0", path = "./thaw_components" } thaw_utils = { version = "0.0.2", path = "./thaw_utils" } diff --git a/README.md b/README.md index d5b721f..11ad274 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ | Crate version | Compatible Leptos version | | ------------- | ------------------------- | | 0.1 | 0.5 | -| 0.2 | 0.6 | +| 0.2 / 0.3 | 0.6 | ## Resources diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index b9d4e5e..5944f32 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.3.0-beta" +version = "0.3.0" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md"