From 2aacce4b779afadbe8ac8b9b009c53567766ed1d Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Tue, 19 Nov 2024 13:13:51 +0100 Subject: [PATCH] Release 0.5.2 --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a4ff3c2..13ea7b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [0.5.2] - 2024-11-19 +### Added + +- Alternative (better) crates section ([#128]) + +[#128]: https://github.com/jonhoo/flurry/pull/128 + ## [0.5.1] - 2024-04-21 ### Changed - Updated to `seize 0.3` ([#123]) @@ -53,7 +60,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - First "real" release. -[Unreleased]: https://github.com/jonhoo/flurry/compare/v0.5.1...HEAD +[Unreleased]: https://github.com/jonhoo/flurry/compare/v0.5.2...HEAD +[0.5.2]: https://github.com/jonhoo/flurry/compare/v0.5.1...v0.5.2 [0.5.1]: https://github.com/jonhoo/flurry/compare/v0.5.0...v0.5.1 [0.5.0]: https://github.com/jonhoo/flurry/compare/v0.4.0...v0.5.0 [0.4.1]: https://github.com/jonhoo/flurry/compare/v0.4.0...v0.5.0 diff --git a/Cargo.lock b/Cargo.lock index 1e8623f..29adda1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -213,7 +213,7 @@ checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a" [[package]] name = "flurry" -version = "0.5.1" +version = "0.5.2" dependencies = [ "ahash", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 16d16dc..373f224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flurry" -version = "0.5.1" +version = "0.5.2" authors = ["Jon Gjengset "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index a07f92f..054957f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,7 @@ //! most part has a similar API. Even though all operations on the map are thread-safe and operate //! on shared references, retrieval operations do *not* entail locking, and there is *not* any //! support for locking the entire table in a way that prevents all access. -//! +//! //! # Better Alternatives //! //! Flurry currently suffers performance and memory usage issues under load.