diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 0c5980418..a0cdef0f6 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.1.7 (July 7, 2021) + +### Fixed + +- sync: fix watch wrapper ([#3914]) +- time: fix `Timeout::size_hint` ([#3902]) + +[#3902]: https://github.com/tokio-rs/tokio/pull/3902 +[#3914]: https://github.com/tokio-rs/tokio/pull/3914 + # 0.1.6 (May 14, 2021) ### Added diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index e169a2bec..911657c37 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.6" +version = "0.1.7" 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.6/tokio_stream" +documentation = "https://docs.rs/tokio-stream/0.1.7/tokio_stream" description = """ Utilities to work with `Stream` and `tokio`. """