Skip to content

Commit

Permalink
Merge #786
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
bors[bot] and taiki-e committed Feb 5, 2022
2 parents bf53bd6 + 29751e4 commit 7905b4c
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crossbeam-channel/CHANGELOG.md
@@ -1,6 +1,6 @@
# Version 0.5.2

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

# Version 0.5.1

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

- Fix Miri error when `-Zmiri-check-number-validity` is enabled. (#779)

# Version 0.9.6

- Add `Atomic::fetch_update`. (#706)
Expand Down
2 changes: 1 addition & 1 deletion 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.6"
version = "0.9.7"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 5 additions & 1 deletion crossbeam-queue/CHANGELOG.md
@@ -1,6 +1,10 @@
# Version 0.3.4

- Implement `IntoIterator` for `ArrayQueue` and `SegQueue`. (#772)

# Version 0.3.3

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

# Version 0.3.2

Expand Down
2 changes: 1 addition & 1 deletion crossbeam-queue/Cargo.toml
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.3"
version = "0.3.4"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions crossbeam-utils/CHANGELOG.md
@@ -1,3 +1,9 @@
# Version 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)

# Version 0.8.6

- 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)
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.6"
version = "0.8.7"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 7905b4c

Please sign in to comment.