Skip to content

Commit

Permalink
release 0.15.4
Browse files Browse the repository at this point in the history
  • Loading branch information
maccesch committed Jan 15, 2025
1 parent 8bd58ea commit a4c0623
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,22 @@
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.15.3] - 2025-01-08
## [0.15.4] - 2025-01-15

### Fixes 🍕

- downgraded codee to 0.2.0 to be compatible with Leptos 0.7
- fixed `use_mutation_observer` (thanks to @bpwarner)

### Changes 🔥

- improxed DX: implemented `Clone + Copy` for `UseDropZoneReturn` (thanks to @mahmoud-eltahawy)

### Special thanks to our sponsor
- @spencewenski


## ~~[0.15.3] - 2025-01-08~~ (yanked)

### New Function 🚀

Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptos-use"
version = "0.15.3"
version = "0.15.4"
edition = "2021"
authors = ["Marc-Stefan Cassola"]
categories = ["gui", "web-programming", "wasm"]
Expand All @@ -17,7 +17,7 @@ actix-web = { version = "4", optional = true, default-features = false }
async-trait = { version = "0.1", optional = true }
cfg-if = "1"
chrono = "0.4"
codee = { version = "0.3", optional = true }
codee = { version = "0.2", optional = true }
cookie = { version = "0.18", features = ["percent-encode"], optional = true }
default-struct-builder = "0.5"
futures-util = { version = "0.3", optional = true }
Expand All @@ -36,9 +36,9 @@ paste = "1"
send_wrapper = "0.6.0"
thiserror = "2"
unic-langid = { version = "0.9", optional = true }
wasm-bindgen = "0.2.96"
wasm-bindgen = "0.2.100"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3.73", optional = true }
web-sys = { version = "0.3.77", optional = true }

[dev-dependencies]
codee = { version = "0.3", features = [
Expand Down

0 comments on commit a4c0623

Please sign in to comment.