From b5a5ddb4cfbe860e8d33a44ca348cc36aab45328 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Tue, 25 Apr 2023 20:21:32 +0200 Subject: [PATCH] chore: prepare tokio-stream v0.1.13 (#5652) --- 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 3c9bbc3b3..acb0537aa 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,15 @@ +# 0.1.13 (April 25th, 2023) + +This release bumps the MSRV of tokio-stream to 1.56. + +- stream: add "full" feature flag ([#5639]) +- stream: add `StreamExt::timeout_repeating` ([#5577]) +- stream: add `StreamNotifyClose` ([#4851]) + +[#4851]: https://github.com/tokio-rs/tokio/pull/4851 +[#5577]: https://github.com/tokio-rs/tokio/pull/5577 +[#5639]: https://github.com/tokio-rs/tokio/pull/5639 + # 0.1.12 (January 20, 2023) - time: remove `Unpin` bound on `Throttle` methods ([#5105]) diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 58fc411d1..bcb03014b 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.12" +version = "0.1.13" edition = "2021" rust-version = "1.56" authors = ["Tokio Contributors "]