From a9fd3b9432364d78998bec4339239b87c5db6899 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 5 Sep 2024 11:09:43 +0200 Subject: [PATCH 1/3] stream: prepare 0.1.16 release --- 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..30250595316 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.1.16 (September 5th, 2024) + +- stream: add `next_many` and `poll_next_many` to `StreamMap` (#6409) +- stream: make stream adapters public (#6658) +- readme: add readme for tokio-stream (#6456) +- chore: increase MSRV to 1.70 (#6645) + +[#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 +[#6645]: https://github.com/tokio-rs/tokio/pull/6645 + # 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 "] From ef70820a0c325f9bf742218980b5ba8971fa48ca Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 5 Sep 2024 11:12:59 +0200 Subject: [PATCH 2/3] stream: prepend MSRV bump notice --- tokio-stream/CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 30250595316..0d189942323 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,14 +1,14 @@ # 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) -- chore: increase MSRV to 1.70 (#6645) [#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 -[#6645]: https://github.com/tokio-rs/tokio/pull/6645 # 0.1.15 (March 14th, 2024) From 1a5bedda5e9086d97e5ab534787cd939d39c796a Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Thu, 5 Sep 2024 11:13:54 +0200 Subject: [PATCH 3/3] stream: linkify PRs in changelog --- tokio-stream/CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 0d189942323..8f0d2e30832 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -2,9 +2,9 @@ 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) +- 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