From 1acd52b82127d220ce7531d10fe2137314e8eb4e Mon Sep 17 00:00:00 2001 From: John Nunley Date: Wed, 15 May 2024 17:20:07 -0700 Subject: [PATCH] v2.3.1 Signed-off-by: John Nunley --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f705c1..610bdae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 2.3.1 + +- Use the correct version of `async-channel` in our manifest. (#93) + # Version 2.3.0 - Add `force_send` for sending items over the channel that displace other items. (#89) diff --git a/Cargo.toml b/Cargo.toml index b694b1f..cd53bd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "async-channel" # When publishing a new version: # - Update CHANGELOG.md # - Create "v2.x.y" git tag -version = "2.3.0" +version = "2.3.1" authors = ["Stjepan Glavina "] edition = "2021" rust-version = "1.60"