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 #707

Merged
merged 1 commit into from
May 30, 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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.8.1

- Support targets that do not have atomic CAS on stable Rust (#698)

# Version 0.8.0

- Bump the minimum supported Rust version to 1.36.
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-X.Y.Z" git tag
version = "0.8.0"
version = "0.8.1"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -57,19 +57,19 @@ default-features = false
optional = true

[dependencies.crossbeam-epoch]
version = "0.9"
version = "0.9.5"
path = "./crossbeam-epoch"
default-features = false
optional = true

[dependencies.crossbeam-queue]
version = "0.3"
version = "0.3.2"
path = "./crossbeam-queue"
default-features = false
optional = true

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

Expand Down
6 changes: 6 additions & 0 deletions crossbeam-epoch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 0.9.5

- Fix UB in `Pointable` impl of `[MaybeUninit<T>]` (#694)
- Support targets that do not have atomic CAS on stable Rust (#698)
- Fix breakage with nightly feature due to rust-lang/rust#84510 (#692)

# Version 0.9.4

- Fix UB in `<[MaybeUninit<T>] as Pointable>::init` when global allocator failed allocation (#690)
Expand Down
4 changes: 2 additions & 2 deletions crossbeam-epoch/Cargo.toml
Original file line number Diff line number Diff line change
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.4"
version = "0.9.5"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -54,7 +54,7 @@ memoffset = "0.6"
loom-crate = { package = "loom", version = "0.5", optional = true }

[dependencies.crossbeam-utils]
version = "0.8.4"
version = "0.8.5"
path = "../crossbeam-utils"
default-features = false

Expand Down
4 changes: 4 additions & 0 deletions crossbeam-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.3.2

- Support targets that do not have atomic CAS on stable Rust (#698)

# Version 0.3.1

- Make `SegQueue::new` const fn. (#584)
Expand Down
4 changes: 2 additions & 2 deletions crossbeam-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-queue"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-queue-X.Y.Z" git tag
version = "0.3.1"
version = "0.3.2"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -41,7 +41,7 @@ nightly = ["crossbeam-utils/nightly"]
cfg-if = "1"

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

Expand Down
4 changes: 2 additions & 2 deletions crossbeam-skiplist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ alloc = ["crossbeam-epoch/alloc"]
cfg-if = "1"

[dependencies.crossbeam-epoch]
version = "0.9.2"
version = "0.9.5"
path = "../crossbeam-epoch"
default-features = false
optional = true

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

Expand Down
5 changes: 5 additions & 0 deletions crossbeam-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Version 0.8.5

- Add `AtomicCell::fetch_update` (#704)
- Support targets that do not have atomic CAS on stable Rust (#698)

# Version 0.8.4

- Bump `loom` dependency to version 0.5. (#686)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-utils/Cargo.toml
Original file line number Diff line number Diff line change
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.4"
version = "0.8.5"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down