From 4beb1862acff6a7b9d6a817b3a21c7ab543a2dd0 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Mon, 4 Jan 2021 19:46:01 +0100 Subject: [PATCH] chore: prepare tokio-stream 0.1.1 (#3374) --- tokio-stream/CHANGELOG.md | 15 ++++++++++++++- tokio-stream/Cargo.toml | 4 ++-- tokio-stream/src/lib.rs | 2 +- 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 8671dc0ca..2116048e2 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,16 @@ +# 0.1.1 (January 4, 2021) + +Added + + - add `Stream` wrappers ([#3343]) + +Fixed + + - move `async-stream` to `dev-dependencies` ([#3366]) + +[#3366]: https://github.com/tokio-rs/tokio/pull/3366 +[#3343]: https://github.com/tokio-rs/tokio/pull/3343 + # 0.1.0 (December 23, 2020) -- Initial release \ No newline at end of file + - Initial release diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 9747e0b37..efb1a07aa 100644 --- a/tokio-stream/Cargo.toml +++ b/tokio-stream/Cargo.toml @@ -7,13 +7,13 @@ name = "tokio-stream" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-stream-0.1.x" git tag. -version = "0.1.0" +version = "0.1.1" 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.0/tokio_stream" +documentation = "https://docs.rs/tokio-stream/0.1.1/tokio_stream" description = """ Utilities to work with `Stream` and `tokio`. """ diff --git a/tokio-stream/src/lib.rs b/tokio-stream/src/lib.rs index a6d6f22ea..8040f2a18 100644 --- a/tokio-stream/src/lib.rs +++ b/tokio-stream/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-stream/0.1.0")] +#![doc(html_root_url = "https://docs.rs/tokio-stream/0.1.1")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,