diff --git a/CHANGELOG.md b/CHANGELOG.md index 5deaa0e..33a9f73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,12 +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). -## [Unreleased] +## [0.11.1] - 2024-07-28 ### New Functions 🚀 -- `use_locale` -- `use_locale` +- `use_locale` (thanks to @BrandonDyer64) +- `use_locales` (thanks to @BrandonDyer64) - `header` – Standard implementations for reading a header on the server. ## [0.11.0] - 2024-07-27 diff --git a/Cargo.toml b/Cargo.toml index 4aa163c..7ac4ef7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "leptos-use" -version = "0.11.0" +version = "0.11.1" edition = "2021" authors = ["Marc-Stefan Cassola"] categories = ["gui", "web-programming"] -description = "Collection of essential Leptos utilities inspired by SolidJS USE / VueUse" +description = "Collection of essential Leptos utilities inspired by React-Use / VueUse / SolidJS-USE" exclude = ["examples/", "tests/"] keywords = ["leptos", "utilities"] license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index 052d738..eb58418 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Crates.io SSR Docs & Demos - 79 Functions + 82 Functions


diff --git a/docs/book/src/introduction.md b/docs/book/src/introduction.md index cf0098a..8bcc1c1 100644 --- a/docs/book/src/introduction.md +++ b/docs/book/src/introduction.md @@ -12,6 +12,6 @@ Crates.io SSR Docs & Demos - 79 Functions + 82 Functions

\ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 4c63f30..9ad5b9b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -25,7 +25,6 @@ mod is_none; mod is_ok; mod is_some; mod on_click_outside; -mod use_locale; mod signal_debounced; mod signal_throttled; mod sync_signal; @@ -58,6 +57,7 @@ mod use_intersection_observer; mod use_interval; mod use_interval_fn; mod use_intl_number_format; +mod use_locale; mod use_locales; mod use_media_query; mod use_mouse; @@ -93,7 +93,6 @@ pub use is_none::*; pub use is_ok::*; pub use is_some::*; pub use on_click_outside::*; -pub use use_locale::*; pub use signal_debounced::*; pub use signal_throttled::*; pub use sync_signal::*; @@ -126,6 +125,7 @@ pub use use_intersection_observer::*; pub use use_interval::*; pub use use_interval_fn::*; pub use use_intl_number_format::*; +pub use use_locale::*; pub use use_locales::*; pub use use_media_query::*; pub use use_mouse::*;