diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb8f83..4bb55bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 0.8.0 + +- Eliminate the need for mutability in the `recv()`, `recv_direct()`, + `recv_blocking()`, and `try_recv()` methods in `Receiver` (#70) + # Version 0.7.1 - Add a `poll_recv()` method to the `Receiver` type. This allows for `Receiver` diff --git a/Cargo.toml b/Cargo.toml index 0a491fe..1c386d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-broadcast" -version = "0.7.1" +version = "0.8.0" license = "MIT OR Apache-2.0" repository = "https://github.com/smol-rs/async-broadcast" documentation = "https://docs.rs/async-broadcast"