From b6db659e110549853f8ac4417c8078c92164fd63 Mon Sep 17 00:00:00 2001 From: John Nunley Date: Fri, 7 Apr 2023 12:28:12 -0700 Subject: [PATCH] v1.13.0 (#69) - Unbind Debug implementations of BufReader and BufWriter. (#49) - Add the once_future() combinator. (#59) - Add a combinator for temporarily using an AsyncRead/AsyncWrite as Read/Write. (#62) - Implement more methods for stream::BlockOn. (#68) --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f89465..adc67b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# Version 1.13.0 + +- Unbind Debug implementations of BufReader and BufWriter. (#49) +- Add the once_future() combinator. (#59) +- Add a combinator for temporarily using an AsyncRead/AsyncWrite as Read/Write. (#62) +- Implement more methods for stream::BlockOn. (#68) + # Version 1.12.0 - Implement `BufRead` for `BlockOn` diff --git a/Cargo.toml b/Cargo.toml index 4fca8f2..03c2f9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "futures-lite" # When publishing a new version: # - Update CHANGELOG.md # - Create "v1.x.y" git tag -version = "1.12.0" +version = "1.13.0" authors = [ "Stjepan Glavina ", "Contributors to futures-rs",