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
#### 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

View file

@ -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<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
- Latest changes from version 0.13.4 and 0.13.5 ported

View file

@ -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"]