Skip to content

Commit

Permalink
Prepare for the next release
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
taiki-e committed Dec 15, 2024
1 parent 54988eb commit ccd83ac
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 5 deletions.
7 changes: 7 additions & 0 deletions crossbeam-channel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# Version 0.5.14

- Fix stack overflow when sending large value to unbounded channel. (#1146, #1147)
- Add `Select::new_biased` function. (#1150)
- Remove inefficient spinning. (#1154)
- Suppress buggy `clippy::zero_repeat_side_effects` lint in macro generated code. (#1123)

# Version 0.5.13

- Add `select_biased!` macro. (#1040)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-channel"
# - Update CHANGELOG.md
# - Update README.md (when increasing major or minor version)
# - Run './tools/publish.sh crossbeam-channel <version>'
version = "0.5.13"
version = "0.5.14"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-deque/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.8.6

- Fix stack overflow when pushing large value to `Injector`. (#1146, #1147, #1159)

# Version 0.8.5

- Remove dependency on `cfg-if`. (#1072)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-deque/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-deque"
# - Update CHANGELOG.md
# - Update README.md (when increasing major or minor version)
# - Run './tools/publish.sh crossbeam-deque <version>'
version = "0.8.5"
version = "0.8.6"
edition = "2021"
rust-version = "1.61"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-queue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.3.12

- Fix stack overflow when pushing large value to `SegQueue`. (#1146, #1147, #1159)

# Version 0.3.11

- Remove dependency on `cfg-if`. (#1072)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-queue"
# - Update CHANGELOG.md
# - Update README.md (when increasing major or minor version)
# - Run './tools/publish.sh crossbeam-queue <version>'
version = "0.3.11"
version = "0.3.12"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 5 additions & 1 deletion crossbeam-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.8.21

- Improve implementation of `CachePadded`. (#1152)

# Version 0.8.20

- Implement `Display` for `CachePadded`. (#1097)
Expand Down Expand Up @@ -29,7 +33,7 @@

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

# Version 0.8.14

Expand Down
2 changes: 1 addition & 1 deletion crossbeam-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-utils"
# - Update CHANGELOG.md
# - Update README.md (when increasing major or minor version)
# - Run './tools/publish.sh crossbeam-utils <version>'
version = "0.8.20"
version = "0.8.21"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit ccd83ac

Please sign in to comment.