From 60b083b630ed279d579368e513406d735d739511 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Sun, 4 Jan 2026 13:53:30 +0100 Subject: [PATCH] chore: prepare tokio-stream 0.1.18 (#7830) --- tokio-stream/CHANGELOG.md | 22 ++++++++++++++++++++++ tokio-stream/Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index ced4edeb4..6216bbf82 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,25 @@ +# 0.1.18 (January 4th, 2026) + +### Added + +- stream: add `ChunksTimeout::into_remainder` ([#7715]) +- stream: add examples to wrapper types ([#7024]) +- sync: implement `Stream::size_hint` for `ReceiverStream` and `UnboundedReceiverStream` ([#7492]) + +### Fixed + +- stream: work around the rustc bug in `StreamExt::collect` ([#7754]) + +### Documented + +- stream: improve the the docs of `TcpListenerStream` ([#7578]) + +[#7024]: https://github.com/tokio-rs/tokio/pull/7024 +[#7492]: https://github.com/tokio-rs/tokio/pull/7492 +[#7578]: https://github.com/tokio-rs/tokio/pull/7578 +[#7715]: https://github.com/tokio-rs/tokio/pull/7715 +[#7754]: https://github.com/tokio-rs/tokio/pull/7754 + # 0.1.17 (December 6th, 2024) - deps: fix dev-dependency on tokio-test ([#6931], [#7019]) diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 534601b0b..ddcdb9762 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.17" +version = "0.1.18" edition = "2021" rust-version = "1.71" authors = ["Tokio Contributors "]