From 766a89bf94631da0d30d43e962f35ee623b9f1d8 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Tue, 12 Jan 2021 21:38:51 +0100 Subject: [PATCH] chore: prepare tokio-stream 0.1.2 (#3414) --- tokio-stream/CHANGELOG.md | 6 ++++++ tokio-stream/Cargo.toml | 4 ++-- tokio-stream/src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 2116048e2..bbb7d8c95 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.2 (January 12, 2021) + +Fixed + + - docs: fix some wrappers missing in documentation (#3378) + # 0.1.1 (January 4, 2021) Added diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 513849df1..d662c387f 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.1" +version = "0.1.2" 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.1/tokio_stream" +documentation = "https://docs.rs/tokio-stream/0.1.2/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 8040f2a18..307a8395f 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.1")] +#![doc(html_root_url = "https://docs.rs/tokio-stream/0.1.2")] #![allow( clippy::cognitive_complexity, clippy::large_enum_variant,