Skip to content

Commit

Permalink
Merge #800
Browse files Browse the repository at this point in the history
800: Prepare for the next release r=taiki-e a=taiki-e

- crossbeam-channel 0.5.2 -> 0.5.3
  - Fix panic on very large timeout. (#798)
- crossbeam-epoch 0.9.7 -> 0.9.8
  - Make `Atomic::null()` const function at 1.61+. (#797)
- crossbeam-queue 0.3.4 -> 0.3.5
  - Add `ArrayQueue::force_push`. (#789)
- crossbeam-utils 0.8.7 -> 0.8.8
  - Fix a bug when unstable `loom` support is enabled. (#787)


Co-authored-by: Taiki Endo <te316e89@gmail.com>
  • Loading branch information
bors[bot] and taiki-e committed Mar 15, 2022
2 parents 8efcd02 + 6fa7246 commit 5b4d808
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 4 deletions.
4 changes: 4 additions & 0 deletions crossbeam-channel/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.5.3

- Fix panic on very large timeout. (#798)

# Version 0.5.2

- Fix stacked borrows violations when `-Zmiri-tag-raw-pointers` is enabled. (#763, #764)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-channel/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-channel"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-channel-X.Y.Z" git tag
version = "0.5.2"
version = "0.5.3"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-epoch/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.9.8

- Make `Atomic::null()` const function at 1.61+. (#797)

# Version 0.9.7

- Fix Miri error when `-Zmiri-check-number-validity` is enabled. (#779)
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.7"
version = "0.9.8"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-queue/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.3.5

- Add `ArrayQueue::force_push`. (#789)

# Version 0.3.4

- Implement `IntoIterator` for `ArrayQueue` and `SegQueue`. (#772)
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.4"
version = "0.3.5"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-utils/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.8.8

- Fix a bug when unstable `loom` support is enabled. (#787)

# Version 0.8.7

- Add `AtomicCell<{i*,u*}>::{fetch_max,fetch_min}`. (#785)
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.7"
version = "0.8.8"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 5b4d808

Please sign in to comment.