From 2e1bdcc69265661333659d17006f81f678c33fc3 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Fri, 5 Apr 2024 08:37:13 -0700 Subject: [PATCH] v2.5.0 Signed-off-by: John Nunley --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb6132a..6dae4c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 2.5.0 + +- Add a `force_push` method that can be used to add an element to the queue by displacing another. (#58) +- Fix a compilation error in the Loom implementation. (#65) + # Version 2.4.0 - Remove unnecessary heap allocations from inside of the `ConcurrentQueue` type. (#53) diff --git a/Cargo.toml b/Cargo.toml index 2b40de0..462958c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "concurrent-queue" # When publishing a new version: # - Update CHANGELOG.md # - Create "v2.x.y" git tag -version = "2.4.0" +version = "2.5.0" authors = [ "Stjepan Glavina ", "Taiki Endo ",