From cdf5d64e6f0d5f8663938145692d159aab9c336a Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 17 Mar 2024 14:49:37 -0700 Subject: [PATCH] v2.3.0 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 ae2f258..33b1dcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 2.3.0 + +- Add `StreamExt::drain` for draining objects from a `Stream` without waiting (#70). + # Version 2.2.0 - Relax `Unpin` bounds on `io::copy`. (#87) diff --git a/Cargo.toml b/Cargo.toml index 0715b96..8655eaf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "futures-lite" # When publishing a new version: # - Update CHANGELOG.md # - Create "v2.x.y" git tag -version = "2.2.0" +version = "2.3.0" authors = [ "Stjepan Glavina ", "Contributors to futures-rs",