diff --git a/CHANGELOG.md b/CHANGELOG.md index 33b1dcc..f4697c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 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 "take_until" function that allows for running a `Future` until a + `Stream` completes. (#103) + # 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",