release 0.14.0-gamma1

This commit is contained in:
Maccesch 2024-10-10 03:07:36 +02:00
parent c8236dfc37
commit 21b7389eb5
3 changed files with 33 additions and 25 deletions

View file

@ -46,30 +46,30 @@ jobs:
run: cargo test --features math,docs,ssr,actix --doc use_locale run: cargo test --features math,docs,ssr,actix --doc use_locale
#### mdbook #### mdbook
# - name: Install mdbook I - name: Install mdbook I
# uses: taiki-e/install-action@v2 uses: taiki-e/install-action@v2
# with: with:
# tool: cargo-binstall,mdbook tool: cargo-binstall,mdbook
# - name: Install mdbook II - name: Install mdbook II
# run: | run: |
# cargo binstall -y mdbook-cmdrun cargo binstall -y mdbook-cmdrun
# cargo binstall -y trunk@0.17.5 cargo binstall -y trunk@0.17.5
# rustup target add wasm32-unknown-unknown rustup target add wasm32-unknown-unknown
# - name: Setup Pages - name: Setup Pages
# id: pages id: pages
# uses: actions/configure-pages@v3 uses: actions/configure-pages@v3
# - name: Build mdbook # TODO : run mdbook tests - name: Build mdbook # TODO : run mdbook tests
# run: | run: |
# cd docs/book cd docs/book
# mdbook build mdbook build
# python3 post_build.py python3 post_build.py
# - name: Upload artifact - name: Upload artifact
# uses: actions/upload-pages-artifact@v1 uses: actions/upload-pages-artifact@v1
# with: with:
# path: ./docs/book/book path: ./docs/book/book
# - name: Deploy book to github pages - name: Deploy book to github pages
# id: deployment id: deployment
# uses: actions/deploy-pages@v2 uses: actions/deploy-pages@v2
##### mdbook end ##### mdbook end
- name: Publish crate leptos-use - name: Publish crate leptos-use

View file

@ -3,6 +3,14 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 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). 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<Vec<SendSignal<web_sys::File>>>` instead of `Signal<Vec<web_sys::File>, LocalStorage>`
to make it easier to use with `<For>`
## [0.14.0-beta4] - 2024-09-15 ## [0.14.0-beta4] - 2024-09-15
- Latest changes from version 0.13.4 and 0.13.5 ported - Latest changes from version 0.13.4 and 0.13.5 ported

View file

@ -1,6 +1,6 @@
[package] [package]
name = "leptos-use" name = "leptos-use"
version = "0.14.0-beta5" version = "0.14.0-gamma1"
edition = "2021" edition = "2021"
authors = ["Marc-Stefan Cassola"] authors = ["Marc-Stefan Cassola"]
categories = ["gui", "web-programming", "wasm"] categories = ["gui", "web-programming", "wasm"]