From 04fa0aaac5d8eb099769ec715edd227480728542 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 9 Apr 2023 21:02:32 +0900 Subject: [PATCH] Prepare for the next release - crossbeam-channel 0.5.7 -> 0.5.8 --- crossbeam-channel/CHANGELOG.md | 14 ++++++++++++++ crossbeam-channel/Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/crossbeam-channel/CHANGELOG.md b/crossbeam-channel/CHANGELOG.md index 3277f15aa..6a405ee73 100644 --- a/crossbeam-channel/CHANGELOG.md +++ b/crossbeam-channel/CHANGELOG.md @@ -1,17 +1,29 @@ +# Version 0.5.8 + +- Fix race condition in unbounded channel. (#972) + # Version 0.5.7 +**Note:** This release has been yanked due to bug fixed in 0.5.8. + - Improve handling of very large timeout. (#953) # Version 0.5.6 +**Note:** This release has been yanked due to bug fixed in 0.5.8. + - Bump the minimum supported Rust version to 1.38. (#877) # Version 0.5.5 +**Note:** This release has been yanked due to bug fixed in 0.5.8. + - Replace Spinlock with Mutex. (#835) # Version 0.5.4 +**Note:** This release has been yanked due to bug fixed in 0.5.8. + - Workaround a bug in upstream related to TLS access on AArch64 Linux. (#802) # Version 0.5.3 @@ -28,6 +40,8 @@ # Version 0.5.1 +**Note:** This release has been yanked due to bug fixed in 0.5.8. + - Fix memory leak in unbounded channel. (#669) # Version 0.5.0 diff --git a/crossbeam-channel/Cargo.toml b/crossbeam-channel/Cargo.toml index 25c367802..a15528029 100644 --- a/crossbeam-channel/Cargo.toml +++ b/crossbeam-channel/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-channel" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-channel-X.Y.Z" git tag -version = "0.5.7" +version = "0.5.8" edition = "2018" rust-version = "1.38" license = "MIT OR Apache-2.0"