From 8e02f082c2f71d8941d3a045a9fedc48f08fa2c3 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 19 Feb 2022 19:28:16 +0900 Subject: [PATCH] Release 2.5.0 --- CHANGELOG.md | 4 ++++ Cargo.toml | 4 +--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 218932b..2ccb983 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 2.5.0 + +- Fix an issue where the future returned by `Mutex::lock_arc`/`Semaphore::acquire_arc` holds a reference to `self`. (#20, #21) + # Version 2.4.0 - Add WASM support. (#14) diff --git a/Cargo.toml b/Cargo.toml index 50f74ea..dcd5c9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,15 +3,13 @@ name = "async-lock" # When publishing a new version: # - Update CHANGELOG.md # - Create "v2.x.y" git tag -version = "2.4.0" +version = "2.5.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.43" description = "Async synchronization primitives" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/async-lock" -homepage = "https://github.com/smol-rs/async-lock" -documentation = "https://docs.rs/async-lock" keywords = ["lock", "mutex", "rwlock", "semaphore", "barrier"] categories = ["asynchronous", "concurrency"] exclude = ["/.*"]