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 "]