chore: prepare tokio-stream 0.1.1 (#3374)

This commit is contained in:
Alice Ryhl
2021-01-04 19:46:01 +01:00
committed by GitHub
parent 7f17822ed9
commit 4beb1862ac
3 changed files with 17 additions and 4 deletions
+14 -1
View File
@@ -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
- Initial release
+2 -2
View File
@@ -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 <[email protected]>"]
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`.
"""
+1 -1
View File
@@ -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,