From 46f974d8cfcb56c251d80cf1dc4a6bcf9fd1d7a0 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Mon, 20 Feb 2023 10:18:18 +0100 Subject: [PATCH] chore: prepare tokio-stream v0.1.12 (#5484) --- tokio-stream/CHANGELOG.md | 8 ++++++++ tokio-stream/Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index 05c2b1881..c475c7c39 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.1.12 (January 20, 2022) + +- time: remove `Unpin` bound on `Throttle` methods ([#5105]) +- time: document that `throttle` operates on ms granularity ([#5101]) + +[#5105]: https://github.com/tokio-rs/tokio/pull/5105 +[#5101]: https://github.com/tokio-rs/tokio/pull/5101 + # 0.1.11 (October 11, 2022) - time: allow `StreamExt::chunks_timeout` outside of a runtime ([#5036]) diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index 01acec3cd..f87b59a36 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.11" +version = "0.1.12" edition = "2018" rust-version = "1.49" authors = ["Tokio Contributors "]