From 902bde7753b6bac54cbd6547929f286d8745b14f Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 6 Dec 2024 10:36:58 +0100 Subject: [PATCH] chore: prepare tokio-stream v0.1.17 --- tokio-stream/CHANGELOG.md | 11 +++++++++++ tokio-stream/Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 8f0d2e30832..ced4edeb45c 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,14 @@ +# 0.1.17 (December 6th, 2024) + +- deps: fix dev-dependency on tokio-test ([#6931], [#7019]) +- stream: fix link on `Peekable` ([#6861]) +- sync: fix `Stream` link in broadcast docs ([#6873]) + +[#6861]: https://github.com/tokio-rs/tokio/pull/6861 +[#6873]: https://github.com/tokio-rs/tokio/pull/6873 +[#6931]: https://github.com/tokio-rs/tokio/pull/6931 +[#7019]: https://github.com/tokio-rs/tokio/pull/7019 + # 0.1.16 (September 5th, 2024) This release bumps the MSRV of tokio-stream to 1.70. diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 0b3244f7148..81d9b9d2022 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.16" +version = "0.1.17" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "]