diff --git a/.github/workflows/demo.yml b/.github/workflows/demo.yml index 66e1bfe..05c7c6a 100644 --- a/.github/workflows/demo.yml +++ b/.github/workflows/demo.yml @@ -26,7 +26,7 @@ jobs: - name: Install Trunk uses: jetli/trunk-action@v0.4.0 with: - version: "v0.17.5" + version: "latest" - name: Build run: | cd demo diff --git a/CHANGELOG.md b/CHANGELOG.md index cdf2ea5..b22b6ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [0.1.9](https://github.com/thaw-ui/thaw/compare/v0.1.8...v0.1.9) (2024-01-24) + +### Features + +* `Message` adds close button and position. +* Update leptos to v0.5.7. + +### Bug Fixs + +* `Input` click edge does not focus. +* Label cannot be removed correctly when `Tab` is removed. + ## [0.1.8](https://github.com/thaw-ui/thaw/compare/v0.1.7...v0.1.8) (2024-01-17) ### Features diff --git a/examples/ssr_axum/public/thaw/grid_dot.svg b/examples/ssr_axum/public/grid_dot.svg similarity index 100% rename from examples/ssr_axum/public/thaw/grid_dot.svg rename to examples/ssr_axum/public/grid_dot.svg diff --git a/examples/ssr_axum/public/thaw/logo.svg b/examples/ssr_axum/public/logo.svg similarity index 100% rename from examples/ssr_axum/public/thaw/logo.svg rename to examples/ssr_axum/public/logo.svg diff --git a/thaw/Cargo.toml b/thaw/Cargo.toml index d074e57..4227e75 100644 --- a/thaw/Cargo.toml +++ b/thaw/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thaw" -version = "0.1.8" +version = "0.1.9" edition = "2021" keywords = ["web", "leptos", "ui", "thaw", "component"] readme = "../README.md"