This commit is contained in:
luoxiao 2024-05-21 21:41:48 +08:00
parent bf48bcca82
commit 5320793ca9
5 changed files with 19 additions and 6 deletions

View file

@ -1,3 +1,16 @@
## [0.3.2](https://github.com/thaw-ui/thaw/compare/v0.3.1...v0.3.2) (2024-05-21)
### Features
* `Switch` adds on_change prop, closes [#196](https://github.com/thaw-ui/thaw/pull/196).
### Bug Fixs
* `Image` object-fit, closes [#195](https://github.com/thaw-ui/thaw/pull/195).
* `Icon` missaligment in message fix, closes [#194](https://github.com/thaw-ui/thaw/pull/194).
* fix `Scrollbar` panic, closes [#193](https://github.com/thaw-ui/thaw/pull/193).
* interchange the icons of MessageVariant::Success and MessageVariant::Error, closes [#188](https://github.com/thaw-ui/thaw/pull/188).
## [0.3.1](https://github.com/thaw-ui/thaw/compare/v0.3.0...v0.3.1) (2024-04-27)
### Features

View file

@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"]
exclude = ["examples"]
[workspace.dependencies]
thaw = { version = "0.3.1", path = "./thaw" }
thaw_components = { version = "0.1.1", path = "./thaw_components" }
thaw_utils = { version = "0.0.3", path = "./thaw_utils" }
thaw = { version = "0.3.2", path = "./thaw" }
thaw_components = { version = "0.1.2", path = "./thaw_components" }
thaw_utils = { version = "0.0.4", path = "./thaw_utils" }

View file

@ -1,6 +1,6 @@
[package]
name = "thaw"
version = "0.3.1"
version = "0.3.2"
edition = "2021"
keywords = ["web", "leptos", "ui", "thaw", "component"]
readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package]
name = "thaw_components"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
keywords = ["leptos", "thaw", "components"]
readme = "../README.md"

View file

@ -1,6 +1,6 @@
[package]
name = "thaw_utils"
version = "0.0.3"
version = "0.0.4"
edition = "2021"
keywords = ["leptos", "thaw", "utils"]
readme = "../README.md"