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",