From aaa150d211a4f5c621369746da0804a3b786b861 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 14 May 2021 18:22:44 +0200 Subject: [PATCH] chore: prepare tokio-stream v0.1.6 (#3785) --- tokio-stream/CHANGELOG.md | 13 +++++++++++++ tokio-stream/Cargo.toml | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 59bb0fa97..0c5980418 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,16 @@ +# 0.1.6 (May 14, 2021) + +### Added + +- stream: implement `Error` and `Display` for `BroadcastStreamRecvError` ([#3745]) + +### Fixed + +- stream: avoid yielding in `AllFuture` and `AnyFuture` ([#3625]) + +[#3745]: https://github.com/tokio-rs/tokio/pull/3745 +[#3625]: https://github.com/tokio-rs/tokio/pull/3625 + # 0.1.5 (March 20, 2021) ### Fixed diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index bf145ee59..5c959172a 100644 --- a/tokio-stream/Cargo.toml +++ b/tokio-stream/Cargo.toml @@ -6,13 +6,13 @@ name = "tokio-stream" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-stream-0.1.x" git tag. -version = "0.1.5" +version = "0.1.6" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-stream/0.1.5/tokio_stream" +documentation = "https://docs.rs/tokio-stream/0.1.6/tokio_stream" description = """ Utilities to work with `Stream` and `tokio`. """