This commit is contained in:
jtnunley 2022-11-06 10:05:03 -08:00
parent 8c42b8dd9d
commit 34334a15dd
2 changed files with 12 additions and 2 deletions

View File

@ -1,3 +1,9 @@
# Version 2.0.0
- Add support for the `portable_atomic` and `loom` crates. (#27)
- **Breaking:** Add an `std` feature that can be disabled to use this crate on `no_std` platforms. (#22)
- Replace usage of `cache-padded` with `crossbeam-utils`. (#26)
# Version 1.2.4
- Fix fence on x86 and miri. (#18)

View File

@ -3,8 +3,12 @@ name = "concurrent-queue"
# When publishing a new version:
# - Update CHANGELOG.md
# - Create "v1.x.y" git tag
version = "1.2.4"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
version = "2.0.0"
authors = [
"Stjepan Glavina <stjepang@gmail.com>",
"Taiki Endo <te316e89@gmail.com>",
"John Nunley <jtnunley01@gmail.com>"
]
edition = "2018"
rust-version = "1.38"
description = "Concurrent multi-producer multi-consumer queue"