Merge pull request #29 from smol-rs/2.0.0

This commit is contained in:
John Nunley 2022-11-08 14:59:05 -08:00 committed by GitHub
commit 3d653aac40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"