From 9833247828b8eba25e5046121c45026094c97df0 Mon Sep 17 00:00:00 2001 From: Maccesch Date: Wed, 6 Nov 2024 17:07:04 -0500 Subject: [PATCH] release 0.14.0-rc1 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- examples/ssr/Cargo.toml | 2 +- src/is_none.rs | 2 +- src/is_some.rs | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f65b9e28..bfe25020 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.toml b/Cargo.toml index bc3e9d81..48a830ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] diff --git a/examples/ssr/Cargo.toml b/examples/ssr/Cargo.toml index 2669e4fb..2c06005c 100644 --- a/examples/ssr/Cargo.toml +++ b/examples/ssr/Cargo.toml @@ -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" diff --git a/src/is_none.rs b/src/is_none.rs index d3e4765a..9c45587e 100644 --- a/src/is_none.rs +++ b/src/is_none.rs @@ -15,7 +15,7 @@ crate::use_derive_signal!( /// if js_sys::Math::random() < 0.5 { Some("Example") } else { None } /// ); /// - /// let is_empty = is_none::>, &str>(example); + /// let is_empty = is_none::<_, &str>(example); /// # /// # view! { } /// # } diff --git a/src/is_some.rs b/src/is_some.rs index 257ab28c..ade85323 100644 --- a/src/is_some.rs +++ b/src/is_some.rs @@ -15,7 +15,7 @@ crate::use_derive_signal!( /// if js_sys::Math::random() < 0.5 { Some("Example") } else { None } /// ); /// - /// let not_empty = is_some::>, &str>(example); + /// let not_empty = is_some::<_, &str>(example); /// # /// # view! { } /// # }