Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5.2 #133

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "flurry"
version = "0.5.1"
version = "0.5.2"
authors = ["Jon Gjengset <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading