From 4ed0fa21e47dc4da978a9da80a61c3422e75f51b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 5 Sep 2024 12:42:22 +0200 Subject: [PATCH] chore: prepare tokio-stream v0.1.16 (#6825) --- tokio-stream/CHANGELOG.md | 12 ++++++++++++ tokio-stream/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) 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 "]