From 36a606b33b158200e0b3eb49b196f2178d9ea78b Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 31 Jul 2021 07:04:21 +0900 Subject: [PATCH] Prepare for the next release - crossbeam-deque 0.8.0 -> 0.8.1 --- crossbeam-deque/CHANGELOG.md | 5 +++++ crossbeam-deque/Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/crossbeam-deque/CHANGELOG.md b/crossbeam-deque/CHANGELOG.md index da37edc5d..14dcc20b7 100644 --- a/crossbeam-deque/CHANGELOG.md +++ b/crossbeam-deque/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 0.8.1 + +- Fix deque steal race condition. (#726) +- Add `Stealer::len` method. (#708) + # Version 0.8.0 - Bump the minimum supported Rust version to 1.36. diff --git a/crossbeam-deque/Cargo.toml b/crossbeam-deque/Cargo.toml index cba710e74..572ddfd61 100644 --- a/crossbeam-deque/Cargo.toml +++ b/crossbeam-deque/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-deque" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-deque-X.Y.Z" git tag -version = "0.8.0" +version = "0.8.1" authors = ["The Crossbeam Project Developers"] edition = "2018" license = "MIT OR Apache-2.0"