Skip to content

Commit 6fa7246

Browse files
committed
Prepare for the next release
- crossbeam-channel 0.5.2 -> 0.5.3 - crossbeam-epoch 0.9.7 -> 0.9.8 - crossbeam-queue 0.3.4 -> 0.3.5 - crossbeam-utils 0.8.7 -> 0.8.8
1 parent 8efcd02 commit 6fa7246

File tree

8 files changed

+20
-4
lines changed

8 files changed

+20
-4
lines changed

crossbeam-channel/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.5.3
2+
3+
- Fix panic on very large timeout. (#798)
4+
15
# Version 0.5.2
26

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

crossbeam-channel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-channel"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-channel-X.Y.Z" git tag
7-
version = "0.5.2"
7+
version = "0.5.3"
88
edition = "2018"
99
rust-version = "1.36"
1010
license = "MIT OR Apache-2.0"

crossbeam-epoch/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.9.8
2+
3+
- Make `Atomic::null()` const function at 1.61+. (#797)
4+
15
# Version 0.9.7
26

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

crossbeam-epoch/Cargo.toml

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

crossbeam-queue/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.3.5
2+
3+
- Add `ArrayQueue::force_push`. (#789)
4+
15
# Version 0.3.4
26

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

crossbeam-queue/Cargo.toml

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

crossbeam-utils/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.8.8
2+
3+
- Fix a bug when unstable `loom` support is enabled. (#787)
4+
15
# Version 0.8.7
26

37
- Add `AtomicCell<{i*,u*}>::{fetch_max,fetch_min}`. (#785)

crossbeam-utils/Cargo.toml

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

0 commit comments

Comments
 (0)