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

Prepare for the next release #667

Merged
merged 1 commit into from Feb 25, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions crossbeam-epoch/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.9.3

- Make `loom` dependency optional. (#666)

# Version 0.9.2

- Add `Atomic::compare_exchange` and `Atomic::compare_exchange_weak`. (#628)
Expand Down
4 changes: 2 additions & 2 deletions crossbeam-epoch/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-epoch"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-epoch-X.Y.Z" git tag
version = "0.9.2"
version = "0.9.3"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -51,7 +51,7 @@ memoffset = "0.6"
loom-crate = { package = "loom", version = "0.4", optional = true }

[dependencies.crossbeam-utils]
version = "0.8"
version = "0.8.3"
path = "../crossbeam-utils"
default-features = false

Expand Down
4 changes: 4 additions & 0 deletions crossbeam-utils/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.8.3

- Make `loom` dependency optional. (#666)

# Version 0.8.2

- Deprecate `AtomicCell::compare_and_swap`. Use `AtomicCell::compare_exchange` instead. (#619)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-utils/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-utils"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-utils-X.Y.Z" git tag
version = "0.8.2"
version = "0.8.3"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down