From 83bcf1ea6748c7e7acb714183574d62d763210fd Mon Sep 17 00:00:00 2001 From: John Nunley Date: Tue, 5 Nov 2024 17:36:13 -0800 Subject: [PATCH] v2.5.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 4a08e71..776dd08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 2.5.0 + +- Remove `Unpin` bound from the `Lines` I/O adapter. (#113) + # Version 2.4.0 - Add a "fuse" method that makes it so a `Future` returns `Poll::Pending` diff --git a/Cargo.toml b/Cargo.toml index 51ed6ab..d1507f0 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.4.0" +version = "2.5.0" authors = [ "Stjepan Glavina ", "Contributors to futures-rs",