Skip to content

Commit 2988f87

Browse files
bors[bot]taiki-e
andauthored
Merge #786
786: Prepare for the next release r=taiki-e a=taiki-e - crossbeam-epoch 0.9.6 -> 0.9.7 - Fix Miri error when `-Zmiri-check-number-validity` is enabled. (#779) - crossbeam-queue 0.3.3 -> 0.3.4 - Implement `IntoIterator` for `ArrayQueue` and `SegQueue`. (#772) - crossbeam-utils 0.8.6 -> 0.8.7 - Add `AtomicCell<{i*,u*}>::{fetch_max,fetch_min}`. (#785) - Add `AtomicCell<{i*,u*,bool}>::fetch_nand`. (#785) - Fix unsoundness of `AtomicCell<{i,u}64>` arithmetics on 32-bit targets that support `Atomic{I,U}64` (#781) Co-authored-by: Taiki Endo <te316e89@gmail.com>
2 parents bf53bd6 + c119b10 commit 2988f87

File tree

7 files changed

+19
-5
lines changed

7 files changed

+19
-5
lines changed

crossbeam-channel/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version 0.5.2
22

3-
- Fix stacked borrows violations. (#763, #764)
3+
- Fix stacked borrows violations when `-Zmiri-tag-raw-pointers` is enabled. (#763, #764)
44

55
# Version 0.5.1
66

crossbeam-epoch/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.9.7
2+
3+
- Fix Miri error when `-Zmiri-check-number-validity` is enabled. (#779)
4+
15
# Version 0.9.6
26

37
- Add `Atomic::fetch_update`. (#706)

crossbeam-epoch/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.6"
7+
version = "0.9.7"
88
edition = "2018"
99
rust-version = "1.36"
1010
license = "MIT OR Apache-2.0"

crossbeam-queue/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
# Version 0.3.4
2+
3+
- Implement `IntoIterator` for `ArrayQueue` and `SegQueue`. (#772)
4+
15
# Version 0.3.3
26

3-
- Fix stacked borrows violation in `ArrayQueue`. (#763)
7+
- Fix stacked borrows violation in `ArrayQueue` when `-Zmiri-tag-raw-pointers` is enabled. (#763)
48

59
# Version 0.3.2
610

crossbeam-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.3"
7+
version = "0.3.4"
88
edition = "2018"
99
rust-version = "1.36"
1010
license = "MIT OR Apache-2.0"

crossbeam-utils/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 0.8.7
2+
3+
- Add `AtomicCell<{i*,u*}>::{fetch_max,fetch_min}`. (#785)
4+
- Add `AtomicCell<{i*,u*,bool}>::fetch_nand`. (#785)
5+
- Fix unsoundness of `AtomicCell<{i,u}64>` arithmetics on 32-bit targets that support `Atomic{I,U}64` (#781)
6+
17
# Version 0.8.6
28

39
- Re-add `AtomicCell<{i,u}64>::{fetch_add,fetch_sub,fetch_and,fetch_or,fetch_xor}` that were accidentally removed in 0.8.0 on targets that do not support `Atomic{I,U}64`. (#767)

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.6"
7+
version = "0.8.7"
88
edition = "2018"
99
rust-version = "1.36"
1010
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)