Skip to content

Commit

Permalink
fixed unstable apis flag for use_web_lock
Browse files Browse the repository at this point in the history
fixes #169
  • Loading branch information
maccesch committed Sep 2, 2024
1 parent ae1676c commit 08b7d7e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .idea/leptos-use.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.13.2] - 2024-09-02

### Fix 🍕

- Fixed web-sys `unstable_apis` flag for `use_web_lock`

## [0.13.1] - 2024-09-01

### New Functions 🚀
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.13.1"
version = "0.13.2"
edition = "2021"
authors = ["Marc-Stefan Cassola"]
categories = ["gui", "web-programming"]
Expand Down
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ mod use_toggle;
#[cfg(feature = "use_user_media")]
mod use_user_media;
#[cfg(feature = "use_web_lock")]
#[cfg(web_sys_unstable_apis)]
mod use_web_lock;
#[cfg(feature = "use_web_notification")]
mod use_web_notification;
Expand Down Expand Up @@ -284,6 +285,7 @@ pub use use_toggle::*;
#[cfg(feature = "use_user_media")]
pub use use_user_media::*;
#[cfg(feature = "use_web_lock")]
#[cfg(web_sys_unstable_apis)]
pub use use_web_lock::*;
#[cfg(feature = "use_web_notification")]
pub use use_web_notification::*;
Expand Down

0 comments on commit 08b7d7e

Please sign in to comment.