Skip to content

Commit

Permalink
release 0.14.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
maccesch committed Nov 6, 2024
1 parent e814a8b commit 9833247
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
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-rc1] - 2024-11-06

- Fixed MediaTrackConstraints dependency (thanks to @mollymorphous)
- Fixed warnings and tests (thanks to @SleeplessOne1917 and @jheuel)
- Unpinned the wasm-bindgen version (thanks to @jheuel)

## [0.14.0-rc0] - 2024-11-03

- Latest changes up to version 0.13.7 ported
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptos-use"
version = "0.14.0-rc0"
version = "0.14.0-rc1"
edition = "2021"
authors = ["Marc-Stefan Cassola"]
categories = ["gui", "web-programming", "wasm"]
Expand Down
2 changes: 1 addition & 1 deletion examples/ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ tokio = { version = "1", features = ["full"], optional = true }
tower = { version = "0.4", optional = true }
tower-default-headers = { git = "https://github.com/banool/tower-default-headers-rs" }
tower-http = { version = "0.5", features = ["fs"], optional = true }
wasm-bindgen = "=0.2.93"
wasm-bindgen = "0.2.95"
thiserror = "1.0.38"
tracing = { version = "0.1.37", optional = true }
http = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/is_none.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ crate::use_derive_signal!(
/// if js_sys::Math::random() < 0.5 { Some("Example") } else { None }
/// );
///
/// let is_empty = is_none::<ReadSignal<Option<&str>>, &str>(example);
/// let is_empty = is_none::<_, &str>(example);
/// #
/// # view! { }
/// # }
Expand Down
2 changes: 1 addition & 1 deletion src/is_some.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ crate::use_derive_signal!(
/// if js_sys::Math::random() < 0.5 { Some("Example") } else { None }
/// );
///
/// let not_empty = is_some::<ReadSignal<Option<&str>>, &str>(example);
/// let not_empty = is_some::<_, &str>(example);
/// #
/// # view! { }
/// # }
Expand Down

0 comments on commit 9833247

Please sign in to comment.