diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 7f4ed6c32e3..8f0d2e30832 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.1.16 (September 5th, 2024) + +This release bumps the MSRV of tokio-stream to 1.70. + +- stream: add `next_many` and `poll_next_many` to `StreamMap` ([#6409]) +- stream: make stream adapters public ([#6658]) +- readme: add readme for tokio-stream ([#6456]) + +[#6409]: https://github.com/tokio-rs/tokio/pull/6409 +[#6658]: https://github.com/tokio-rs/tokio/pull/6658 +[#6456]: https://github.com/tokio-rs/tokio/pull/6456 + # 0.1.15 (March 14th, 2024) This release bumps the MSRV of tokio-stream to 1.63. diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 87b2bf6db0a..3c6868b688c 100644 --- a/tokio-stream/Cargo.toml +++ b/tokio-stream/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-stream" # - Remove path dependencies # - Update CHANGELOG.md. # - Create "tokio-stream-0.1.x" git tag. -version = "0.1.15" +version = "0.1.16" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "]