diff --git a/CHANGELOG.md b/CHANGELOG.md index 37bd289..08d75ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## [0.3.1](https://github.com/thaw-ui/thaw/compare/v0.3.0...v0.3.1) (2024-04-27) + +### Features + +* Adds `BackTop` component. +* Adds `Anchor` component. +* Adds `MultiSelect` component. +* thaw_utils: Adds get_scroll_parent function. +* thaw_utils: Adds add_event_listener_with_bool function. +* thaw_utils: Adds throttle function. + +### Bug Fixs + +* `Button` font size styling. +* `TimePicker` scroll problem. +* `Icon` inline-block. +* `Select` height problem. + ## [0.3.0](https://github.com/thaw-ui/thaw/compare/v0.3.0-beta...v0.3.0) (2024-04-14) ### Features diff --git a/Cargo.toml b/Cargo.toml index 8fd2270..72f1c9a 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", path = "./thaw" } -thaw_components = { version = "0.1.0", path = "./thaw_components" } -thaw_utils = { version = "0.0.2", path = "./thaw_utils" } +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" } diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index d6757ed..1e7b58a 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.3.0" +version = "0.3.1" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md" diff --git a/thaw_components/Cargo.toml b/thaw_components/Cargo.toml index bc84006..ae140ba 100644 --- a/thaw_components/Cargo.toml +++ b/thaw_components/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_components" -version = "0.1.0" +version = "0.1.1" edition = "2021" keywords = ["leptos", "thaw", "components"] readme = "../README.md" diff --git a/thaw_utils/Cargo.toml b/thaw_utils/Cargo.toml index 27dc562..ad14846 100644 --- a/thaw_utils/Cargo.toml +++ b/thaw_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw_utils" -version = "0.0.2" +version = "0.0.3" edition = "2021" keywords = ["leptos", "thaw", "utils"] readme = "../README.md"