Skip to content

Commit

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

- crossbeam-channel 0.5.4 -> 0.5.5
  - Replace Spinlock with Mutex. (#835)
- crossbeam-epoch 0.9.8 -> 0.9.9
  - Replace lazy_static with once_cell. (#817)
- crossbeam-utils 0.8.8 -> 0.8.9
  - Replace lazy_static with once_cell. (#817)

Co-authored-by: Taiki Endo <te316e89@gmail.com>
  • Loading branch information
bors[bot] and taiki-e committed Jun 16, 2022
2 parents 657eef1 + 6b3d155 commit 1676989
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -160,8 +160,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# TODO: unpin nightly toolchain once https://github.com/rust-lang/miri/issues/2223 fixed.
- name: Install Rust
run: rustup toolchain install nightly --component miri && rustup default nightly
run: rustup toolchain install nightly-2022-06-08 --component miri && rustup default nightly-2022-06-08
- name: miri
run: ./ci/miri.sh

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

- Replace Spinlock with Mutex. (#835)

# Version 0.5.4

- Workaround a bug in upstream related to TLS access on AArch64 Linux. (#802)
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.4"
version = "0.5.5"
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.9

- Replace lazy_static with once_cell. (#817)

# Version 0.9.8

- Make `Atomic::null()` const function at 1.61+. (#797)
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.8"
version = "0.9.9"
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.9

- Replace lazy_static with once_cell. (#817)

# Version 0.8.8

- Fix a bug when unstable `loom` support is enabled. (#787)
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.8"
version = "0.8.9"
edition = "2018"
rust-version = "1.36"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 1676989

Please sign in to comment.