Skip to content

Commit 6d4cdd4

Browse files
bors[bot]taiki-e
andauthored
Merge #707
707: Prepare for the next release r=taiki-e a=taiki-e - crossbeam-epoch 0.9.4 -> 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) - crossbeam-queue 0.3.1 -> 0.3.2 - Support targets that do not have atomic CAS on stable Rust (#698) - crossbeam-utils 0.8.4 -> 0.8.5 - Add `AtomicCell::fetch_update` (#704) - Support targets that do not have atomic CAS on stable Rust (#698) - crossbeam 0.8.0 -> 0.8.1 - Support targets that do not have atomic CAS on stable Rust (#698) Closes #702 Co-authored-by: Taiki Endo <[email protected]>
2 parents 9a9dd75 + 38baf67 commit 6d4cdd4

File tree

9 files changed

+30
-11
lines changed

9 files changed

+30
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.8.1
2+
3+
- Support targets that do not have atomic CAS on stable Rust (#698)
4+
15
# Version 0.8.0
26

37
- Bump the minimum supported Rust version to 1.36.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-X.Y.Z" git tag
7-
version = "0.8.0"
7+
version = "0.8.1"
88
authors = ["The Crossbeam Project Developers"]
99
edition = "2018"
1010
license = "MIT OR Apache-2.0"
@@ -57,19 +57,19 @@ default-features = false
5757
optional = true
5858

5959
[dependencies.crossbeam-epoch]
60-
version = "0.9"
60+
version = "0.9.5"
6161
path = "./crossbeam-epoch"
6262
default-features = false
6363
optional = true
6464

6565
[dependencies.crossbeam-queue]
66-
version = "0.3"
66+
version = "0.3.2"
6767
path = "./crossbeam-queue"
6868
default-features = false
6969
optional = true
7070

7171
[dependencies.crossbeam-utils]
72-
version = "0.8"
72+
version = "0.8.5"
7373
path = "./crossbeam-utils"
7474
default-features = false
7575

crossbeam-epoch/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 0.9.5
2+
3+
- Fix UB in `Pointable` impl of `[MaybeUninit<T>]` (#694)
4+
- Support targets that do not have atomic CAS on stable Rust (#698)
5+
- Fix breakage with nightly feature due to rust-lang/rust#84510 (#692)
6+
17
# Version 0.9.4
28

39
- Fix UB in `<[MaybeUninit<T>] as Pointable>::init` when global allocator failed allocation (#690)

crossbeam-epoch/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-epoch"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-epoch-X.Y.Z" git tag
7-
version = "0.9.4"
7+
version = "0.9.5"
88
authors = ["The Crossbeam Project Developers"]
99
edition = "2018"
1010
license = "MIT OR Apache-2.0"
@@ -54,7 +54,7 @@ memoffset = "0.6"
5454
loom-crate = { package = "loom", version = "0.5", optional = true }
5555

5656
[dependencies.crossbeam-utils]
57-
version = "0.8.4"
57+
version = "0.8.5"
5858
path = "../crossbeam-utils"
5959
default-features = false
6060

crossbeam-queue/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.3.2
2+
3+
- Support targets that do not have atomic CAS on stable Rust (#698)
4+
15
# Version 0.3.1
26

37
- Make `SegQueue::new` const fn. (#584)

crossbeam-queue/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-queue"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-queue-X.Y.Z" git tag
7-
version = "0.3.1"
7+
version = "0.3.2"
88
authors = ["The Crossbeam Project Developers"]
99
edition = "2018"
1010
license = "MIT OR Apache-2.0"
@@ -41,7 +41,7 @@ nightly = ["crossbeam-utils/nightly"]
4141
cfg-if = "1"
4242

4343
[dependencies.crossbeam-utils]
44-
version = "0.8"
44+
version = "0.8.5"
4545
path = "../crossbeam-utils"
4646
default-features = false
4747

crossbeam-skiplist/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ alloc = ["crossbeam-epoch/alloc"]
3232
cfg-if = "1"
3333

3434
[dependencies.crossbeam-epoch]
35-
version = "0.9.2"
35+
version = "0.9.5"
3636
path = "../crossbeam-epoch"
3737
default-features = false
3838
optional = true
3939

4040
[dependencies.crossbeam-utils]
41-
version = "0.8"
41+
version = "0.8.5"
4242
path = "../crossbeam-utils"
4343
default-features = false
4444

crossbeam-utils/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 0.8.5
2+
3+
- Add `AtomicCell::fetch_update` (#704)
4+
- Support targets that do not have atomic CAS on stable Rust (#698)
5+
16
# Version 0.8.4
27

38
- Bump `loom` dependency to version 0.5. (#686)

crossbeam-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-utils"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-utils-X.Y.Z" git tag
7-
version = "0.8.4"
7+
version = "0.8.5"
88
authors = ["The Crossbeam Project Developers"]
99
edition = "2018"
1010
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)