From 3d6cd8f6be74a9608f7e695c6f47990b1693d772 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Fri, 7 Jul 2023 21:21:00 -0700 Subject: [PATCH] v1.9.0 --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26f862a..a4c61f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 1.9.0 + +- Fix a bug where `WeakSender/WeakReceiver` could incorrectly return `Some` even if the channel is already closed (#60) +- Remove the unnecessary `T: Clone` bound from `WeakSender/WeakReceiver`'s `Clone` implementation (#62) + # Version 1.8.0 - Prevent deadlock if sender/receiver is forgotten (#49) diff --git a/Cargo.toml b/Cargo.toml index 6439e2f..5c4eea8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-channel" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.8.0" +version = "1.9.0" authors = ["Stjepan Glavina "] edition = "2018" rust-version = "1.45"