From d68ceb46f8f63e009ea824ac11ee17acb643531a Mon Sep 17 00:00:00 2001 From: Makro Date: Tue, 11 Oct 2022 10:09:23 +0100 Subject: [PATCH] Update stream version and changelog --- tokio-stream/CHANGELOG.md | 6 ++++++ tokio-stream/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 1037b80db19..05c2b18812c 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.11 (October 11, 2022) + +- time: allow `StreamExt::chunks_timeout` outside of a runtime ([#5036]) + +[#5036]: https://github.com/tokio-rs/tokio/pull/5036 + # 0.1.10 (Sept 18, 2022) - time: add `StreamExt::chunks_timeout` ([#4695]) diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index a4cfcd6d123..6dfa9784f79 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.10" +version = "0.1.11" edition = "2018" rust-version = "1.49" authors = ["Tokio Contributors "]