From 336a9b31ff385728d00eb7ef173e4d054584b787 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Tue, 31 May 2022 01:43:26 +0100 Subject: [PATCH] Release parking_lot 0.12.1 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f65f653e..8421b843 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## parking_lot 0.12.1 (2022-05-31) + +- Fixed incorrect memory ordering in `RwLock`. (#344) +- Added `Condvar::wait_while` convenience methods (#343) + ## parking_lot_core 0.9.3 (2022-04-30) - Bump windows-sys dependency to 0.36. (#339) diff --git a/Cargo.toml b/Cargo.toml index e64d3413..90b653d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "parking_lot" -version = "0.12.0" +version = "0.12.1" authors = ["Amanieu d'Antras "] description = "More compact and efficient implementations of the standard synchronization primitives." license = "MIT OR Apache-2.0"