diff --git a/CHANGELOG.md b/CHANGELOG.md index cdb8f83..843d2e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 0.7.2 + +- Add `Sender::broadcast_blocking` and `Receiver::recv_blocking`. #41 +- Use `Mutex` instead of `RwLock` for securing the inner data. #42 +- Many non-user-facing internal improvements and fixes. + # 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..8f165f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-broadcast" -version = "0.7.1" +version = "0.7.2" license = "MIT OR Apache-2.0" repository = "https://github.com/smol-rs/async-broadcast" documentation = "https://docs.rs/async-broadcast"