diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index f23fe7d..cb67468 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -46,30 +46,30 @@ jobs: run: cargo test --features math,docs,ssr,actix --doc use_locale #### mdbook - # - name: Install mdbook I - # uses: taiki-e/install-action@v2 - # with: - # tool: cargo-binstall,mdbook - # - name: Install mdbook II - # run: | - # cargo binstall -y mdbook-cmdrun - # cargo binstall -y trunk@0.17.5 - # rustup target add wasm32-unknown-unknown - # - name: Setup Pages - # id: pages - # uses: actions/configure-pages@v3 - # - name: Build mdbook # TODO : run mdbook tests - # run: | - # cd docs/book - # mdbook build - # python3 post_build.py - # - name: Upload artifact - # uses: actions/upload-pages-artifact@v1 - # with: - # path: ./docs/book/book - # - name: Deploy book to github pages - # id: deployment - # uses: actions/deploy-pages@v2 + - name: Install mdbook I + uses: taiki-e/install-action@v2 + with: + tool: cargo-binstall,mdbook + - name: Install mdbook II + run: | + cargo binstall -y mdbook-cmdrun + cargo binstall -y trunk@0.17.5 + rustup target add wasm32-unknown-unknown + - name: Setup Pages + id: pages + uses: actions/configure-pages@v3 + - name: Build mdbook # TODO : run mdbook tests + run: | + cd docs/book + mdbook build + python3 post_build.py + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + path: ./docs/book/book + - name: Deploy book to github pages + id: deployment + uses: actions/deploy-pages@v2 ##### mdbook end - name: Publish crate leptos-use diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b82463..b910085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.14.0-gamma1] - 2024-10-10 + +- Adapted to the latest changes in Leptos (thanks to @BakerNet and @nikessel) +- Fixed all the examples +- `use_active_element` ported +- `use_drop_zone` now returns `Signal>>` instead of `Signal, LocalStorage>` + to make it easier to use with `` + ## [0.14.0-beta4] - 2024-09-15 - Latest changes from version 0.13.4 and 0.13.5 ported diff --git a/Cargo.toml b/Cargo.toml index b91284e..e7e8b6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos-use" -version = "0.14.0-beta5" +version = "0.14.0-gamma1" edition = "2021" authors = ["Marc-Stefan Cassola"] categories = ["gui", "web-programming", "wasm"]