diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d57803..26f862a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 1.8.0 + +- Prevent deadlock if sender/receiver is forgotten (#49) +- Add weak sender and receiver (#51) +- Update `concurrent-queue` to v2 (#50) + # Version 1.7.1 - Work around MSRV increase due to a cargo bug. diff --git a/Cargo.toml b/Cargo.toml index fa5fb84..5f0aaae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,15 +3,13 @@ name = "async-channel" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.7.1" +version = "1.8.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.38" description = "Async multi-producer multi-consumer channel" license = "Apache-2.0 OR MIT" repository = "https://github.com/smol-rs/async-channel" -homepage = "https://github.com/smol-rs/async-channel" -documentation = "https://docs.rs/async-channel" keywords = ["mpmc", "mpsc", "spmc", "chan", "futures"] categories = ["asynchronous", "concurrency"] exclude = ["/.*"]