From 7aa7bd71986fb8ec303f39aeb75d0f167900f1cd Mon Sep 17 00:00:00 2001 From: John Nunley Date: Sun, 26 May 2024 14:35:16 -0700 Subject: [PATCH] v2.4.0 Signed-off-by: John Nunley --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33b1dcc..4a08e71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# Version 2.4.0 + +- Add a "fuse" method that makes it so a `Future` returns `Poll::Pending` + forever after it returns `Poll::Pending` once. (#101) +- Add a "stop_after_future" function that allows for running a `Stream` until a + `Future` completes. (#103) +- Make it so `Zip`/`TryZip` drop completed futures. (#106) + # Version 2.3.0 - Add `StreamExt::drain` for draining objects from a `Stream` without waiting (#70). diff --git a/Cargo.toml b/Cargo.toml index 8655eaf..51ed6ab 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.3.0" +version = "2.4.0" authors = [ "Stjepan Glavina ", "Contributors to futures-rs",