Skip to content

Commit ccd83ac

Browse files
committed
Prepare for the next release
- crossbeam-utils 0.8.20 -> 0.8.21 - crossbeam-channel 0.5.13 -> 0.5.14 - crossbeam-deque 0.8.5 -> 0.8.6 - crossbeam-queue 0.3.11 -> 0.3.12
1 parent 54988eb commit ccd83ac

File tree

8 files changed

+24
-5
lines changed

8 files changed

+24
-5
lines changed

crossbeam-channel/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# Version 0.5.14
2+
3+
- Fix stack overflow when sending large value to unbounded channel. (#1146, #1147)
4+
- Add `Select::new_biased` function. (#1150)
5+
- Remove inefficient spinning. (#1154)
6+
- Suppress buggy `clippy::zero_repeat_side_effects` lint in macro generated code. (#1123)
7+
18
# Version 0.5.13
29

310
- Add `select_biased!` macro. (#1040)

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 (when increasing major or minor version)
66
# - Run './tools/publish.sh crossbeam-channel <version>'
7-
version = "0.5.13"
7+
version = "0.5.14"
88
edition = "2021"
99
rust-version = "1.60"
1010
license = "MIT OR Apache-2.0"

crossbeam-deque/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.8.6
2+
3+
- Fix stack overflow when pushing large value to `Injector`. (#1146, #1147, #1159)
4+
15
# Version 0.8.5
26

37
- Remove dependency on `cfg-if`. (#1072)

crossbeam-deque/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-deque"
44
# - Update CHANGELOG.md
55
# - Update README.md (when increasing major or minor version)
66
# - Run './tools/publish.sh crossbeam-deque <version>'
7-
version = "0.8.5"
7+
version = "0.8.6"
88
edition = "2021"
99
rust-version = "1.61"
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.12
2+
3+
- Fix stack overflow when pushing large value to `SegQueue`. (#1146, #1147, #1159)
4+
15
# Version 0.3.11
26

37
- Remove dependency on `cfg-if`. (#1072)

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 (when increasing major or minor version)
66
# - Run './tools/publish.sh crossbeam-queue <version>'
7-
version = "0.3.11"
7+
version = "0.3.12"
88
edition = "2021"
99
rust-version = "1.60"
1010
license = "MIT OR Apache-2.0"

crossbeam-utils/CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.8.21
2+
3+
- Improve implementation of `CachePadded`. (#1152)
4+
15
# Version 0.8.20
26

37
- Implement `Display` for `CachePadded`. (#1097)
@@ -29,7 +33,7 @@
2933

3034
- Add `#[clippy::has_significant_drop]` to `ShardedLock{Read,Write}Guard`. (#958)
3135
- Improve handling of very large timeout. (#953)
32-
- Soft-deprecate `thread::scope()` in favor of the more efficient `std::thread::scope` that stabilized on Rust 1.63. (#954)
36+
- Soft-deprecate `thread::scope()` in favor of the more efficient `std::thread::scope` that stabilized in Rust 1.63. (#954)
3337

3438
# Version 0.8.14
3539

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 (when increasing major or minor version)
66
# - Run './tools/publish.sh crossbeam-utils <version>'
7-
version = "0.8.20"
7+
version = "0.8.21"
88
edition = "2021"
99
rust-version = "1.60"
1010
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)