mirror of
https://github.com/adoyle0/leptos-use.git
synced 2025-01-22 16:49:22 -05:00
release 0.11.1
This commit is contained in:
parent
7aa580ace4
commit
1945e94da1
5 changed files with 9 additions and 9 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
<a href="https://crates.io/crates/leptos-use"><img src="https://img.shields.io/crates/v/leptos-use.svg?label=&color=%232C1275" alt="Crates.io"/></a>
|
||||
<a href="https://leptos-use.rs/server_side_rendering.html"><img src="https://img.shields.io/badge/-SSR-%236a214b" alt="SSR"></a>
|
||||
<a href="https://leptos-use.rs"><img src="https://img.shields.io/badge/-docs%20%26%20demos-%239A233F" alt="Docs & Demos"></a>
|
||||
<a href="https://leptos-use.rs"><img src="https://img.shields.io/badge/-79%20functions-%23EF3939" alt="79 Functions" /></a>
|
||||
<a href="https://leptos-use.rs"><img src="https://img.shields.io/badge/-82%20functions-%23EF3939" alt="82 Functions" /></a>
|
||||
</p>
|
||||
|
||||
<br/>
|
||||
|
|
|
@ -12,6 +12,6 @@
|
|||
<a href="https://crates.io/crates/leptos-use"><img src="https://img.shields.io/crates/v/leptos-use.svg?label=&color=%232C1275" alt="Crates.io"/></a>
|
||||
<a href="https://leptos-use.rs/server_side_rendering.html"><img src="https://img.shields.io/badge/-SSR-%236a214b" alt="SSR"></a>
|
||||
<a href="./get_started.html"><img src="https://img.shields.io/badge/-docs%20%26%20demos-%239A233F" alt="Docs & Demos"></a>
|
||||
<a href="./functions.html"><img src="https://img.shields.io/badge/-79%20functions-%23EF3939" alt="79 Functions" /></a>
|
||||
<a href="./functions.html"><img src="https://img.shields.io/badge/-82%20functions-%23EF3939" alt="82 Functions" /></a>
|
||||
</p>
|
||||
</div>
|
|
@ -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::*;
|
||||
|
|
Loading…
Add table
Reference in a new issue