From 398dfda56d3ee4b0d4d9e86abe15039e86979d83 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Wed, 26 Apr 2023 10:47:43 +0200 Subject: [PATCH] chore: prepare tokio-stream v0.1.14 (#5658) --- tokio-stream/CHANGELOG.md | 7 +++++++ tokio-stream/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/tokio-stream/CHANGELOG.md b/tokio-stream/CHANGELOG.md index acb0537aa..c14ad075d 100644 --- a/tokio-stream/CHANGELOG.md +++ b/tokio-stream/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.1.14 (April 26th, 2023) + +This bugfix release bumps the minimum version of Tokio to 1.15, which is +necessary for `timeout_repeating` to compile. ([#5657]) + +[#5657]: https://github.com/tokio-rs/tokio/pull/5657 + # 0.1.13 (April 25th, 2023) This release bumps the MSRV of tokio-stream to 1.56. diff --git a/tokio-stream/Cargo.toml b/tokio-stream/Cargo.toml index badbe796a..9a90cd32c 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.13" +version = "0.1.14" edition = "2021" rust-version = "1.56" authors = ["Tokio Contributors "]