diff --git a/CHANGELOG.md b/CHANGELOG.md index a4c61f3..77c164c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# Version 2.0.0 + +- **Breaking:** Make `Send`, `Recv` and `Receiver` `!Unpin`. This enables more efficient event notification strategies. (#59) +- **Breaking:** Add an `std` enabled-by-default feature that enables parts of the API that require `std`. (#59) +- Add support for the `wasm32` target. (#67) + # Version 1.9.0 - Fix a bug where `WeakSender/WeakReceiver` could incorrectly return `Some` even if the channel is already closed (#60) diff --git a/Cargo.toml b/Cargo.toml index 371feaa..8921e83 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,8 @@ name = "async-channel" # When publishing a new version: # - Update CHANGELOG.md -# - Create "v1.x.y" git tag -version = "1.9.0" +# - Create "v2.x.y" git tag +version = "2.0.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.59"