From c8551a334c204549756a475b2aac175011b8ee4f Mon Sep 17 00:00:00 2001 From: John Nunley Date: Wed, 25 Oct 2023 08:38:13 -0700 Subject: [PATCH] v2.0.0 Signed-off-by: John Nunley --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adc67b0..a23d13d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# Version 2.0.0 + +- **Breaking:** Expose `future::{ready, pending}` from `core` instead of defining + our own. (#73) +- **Breaking:** The `TryZip` and `Zip` combinators are modified to have a cleaner + API, where generic constraints are not necessary on the structure itself at the + cost of additional generics. (#74) +- Add a way to use racey futures on `no_std` by providing your own seed. (#75) + # Version 1.13.0 - Unbind Debug implementations of BufReader and BufWriter. (#49) diff --git a/Cargo.toml b/Cargo.toml index 0d2b059..f127b75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,8 @@ name = "futures-lite" # When publishing a new version: # - Update CHANGELOG.md -# - Create "v1.x.y" git tag -version = "1.13.0" +# - Create "v2.x.y" git tag +version = "2.0.0" authors = [ "Stjepan Glavina ", "Contributors to futures-rs",