This commit is contained in:
luoxiao 2024-04-14 00:41:57 +08:00
parent b4446aba98
commit 95abde2b9d
4 changed files with 13 additions and 3 deletions

View file

@ -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

View file

@ -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" }

View file

@ -13,7 +13,7 @@
| Crate version | Compatible Leptos version |
| ------------- | ------------------------- |
| 0.1 | 0.5 |
| 0.2 | 0.6 |
| 0.2 / 0.3 | 0.6 |
## Resources

View file

@ -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"