Skip to content

Commit 5320793

Browse files
committed
v0.3.2
1 parent bf48bcc commit 5320793

File tree

5 files changed

+19
-6
lines changed

5 files changed

+19
-6
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [0.3.2](https://github.com/thaw-ui/thaw/compare/v0.3.1...v0.3.2) (2024-05-21)
2+
3+
### Features
4+
5+
* `Switch` adds on_change prop, closes [#196](https://github.com/thaw-ui/thaw/pull/196).
6+
7+
### Bug Fixs
8+
9+
* `Image` object-fit, closes [#195](https://github.com/thaw-ui/thaw/pull/195).
10+
* `Icon` missaligment in message fix, closes [#194](https://github.com/thaw-ui/thaw/pull/194).
11+
* fix `Scrollbar` panic, closes [#193](https://github.com/thaw-ui/thaw/pull/193).
12+
* interchange the icons of MessageVariant::Success and MessageVariant::Error, closes [#188](https://github.com/thaw-ui/thaw/pull/188).
13+
114
## [0.3.1](https://github.com/thaw-ui/thaw/compare/v0.3.0...v0.3.1) (2024-04-27)
215

316
### Features

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ members = ["thaw", "thaw_components", "thaw_utils", "demo", "demo_markdown"]
44
exclude = ["examples"]
55

66
[workspace.dependencies]
7-
thaw = { version = "0.3.1", path = "./thaw" }
8-
thaw_components = { version = "0.1.1", path = "./thaw_components" }
9-
thaw_utils = { version = "0.0.3", path = "./thaw_utils" }
7+
thaw = { version = "0.3.2", path = "./thaw" }
8+
thaw_components = { version = "0.1.2", path = "./thaw_components" }
9+
thaw_utils = { version = "0.0.4", path = "./thaw_utils" }

thaw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw"
3-
version = "0.3.1"
3+
version = "0.3.2"
44
edition = "2021"
55
keywords = ["web", "leptos", "ui", "thaw", "component"]
66
readme = "../README.md"

thaw_components/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw_components"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
keywords = ["leptos", "thaw", "components"]
66
readme = "../README.md"

thaw_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "thaw_utils"
3-
version = "0.0.3"
3+
version = "0.0.4"
44
edition = "2021"
55
keywords = ["leptos", "thaw", "utils"]
66
readme = "../README.md"

0 commit comments

Comments
 (0)