From f8fe0ffb23c2279708cb5dada7c88defdae60845 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Tue, 23 Jul 2024 18:28:04 +0200 Subject: [PATCH] chore: prepare Tokio v1.39.1 (#6716) --- README.md | 2 +- tokio/CHANGELOG.md | 9 +++++++++ tokio/Cargo.toml | 2 +- tokio/README.md | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5ce0617718e..db29b923144 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml: ```toml [dependencies] -tokio = { version = "1.39.0", features = ["full"] } +tokio = { version = "1.39.1", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 32ef173c8ca..d43f43e843f 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,5 +1,14 @@ +# 1.39.1 (July 23rd, 2024) + +This release reverts "time: avoid traversing entries in the time wheel twice" +because it contains a bug. ([#6715]) + +[#6715]: https://github.com/tokio-rs/tokio/pull/6715 + # 1.39.0 (July 23rd, 2024) +Yanked. Please use 1.39.1 instead. + - This release bumps the MSRV to 1.70. ([#6645]) - This release upgrades to mio v1. ([#6635]) - This release upgrades to windows-sys v0.52 ([#6154]) diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index a2fcddf34ce..c28b52a1604 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -6,7 +6,7 @@ name = "tokio" # - README.md # - Update CHANGELOG.md. # - Create "v1.x.y" git tag. -version = "1.39.0" +version = "1.39.1" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index 5ce0617718e..db29b923144 100644 --- a/tokio/README.md +++ b/tokio/README.md @@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml: ```toml [dependencies] -tokio = { version = "1.39.0", features = ["full"] } +tokio = { version = "1.39.1", features = ["full"] } ``` Then, on your main.rs: