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 = ["/.*"]