Signed-off-by: John Nunley <dev@notgull.net>
This commit is contained in:
John Nunley 2024-04-26 07:25:42 -07:00 committed by GitHub
parent 5b74dc8acc
commit e874f701f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
# Version 2.5.0
- Add a `force_push` method that can be used to add an element to the queue by displacing another. (#58)
- Make `ConcurrentQueue::unbounded()` into a `const` function. (#67)
- Fix a compilation error in the Loom implementation. (#65)
# Version 2.4.0
- Remove unnecessary heap allocations from inside of the `ConcurrentQueue` type. (#53)

View File

@ -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 <stjepang@gmail.com>",
"Taiki Endo <te316e89@gmail.com>",