From 905c146aeda741ea2202f942a7c3a606dda13da5 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Thu, 16 Apr 2026 14:28:05 -0700 Subject: [PATCH] chore: prepare to release v1.52.1 (#8059) # 1.52.1 (April 16th, 2026) ## Fixed - runtime: revert [#7757] to fix [a regression][#8056] that causes `spawn_blocking` to hang ([#8057]) [#7757]: https://github.com/tokio-rs/tokio/pull/7757 [#8056]: https://github.com/tokio-rs/tokio/pull/8056 [#8057]: https://github.com/tokio-rs/tokio/pull/8057 --- README.md | 2 +- tokio/CHANGELOG.md | 10 ++++++++++ tokio/Cargo.toml | 2 +- tokio/README.md | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a3bbd6e7d..567c7332d 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Make sure you enable the full features of the tokio crate on Cargo.toml: ```toml [dependencies] -tokio = { version = "1.52.0", features = ["full"] } +tokio = { version = "1.52.1", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 1f26f853e..50df159d6 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,13 @@ +# 1.52.1 (April 16th, 2026) + +## Fixed + +- runtime: revert [#7757] to fix [a regression][#8056] that causes `spawn_blocking` to hang ([#8057]) + +[#7757]: https://github.com/tokio-rs/tokio/pull/7757 +[#8056]: https://github.com/tokio-rs/tokio/pull/8056 +[#8057]: https://github.com/tokio-rs/tokio/pull/8057 + # 1.52.0 (April 14th, 2026) ## Added diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 1acc7c775..b0bedbed9 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.52.0" +version = "1.52.1" edition = "2021" rust-version = "1.71" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index a3bbd6e7d..567c7332d 100644 --- a/tokio/README.md +++ b/tokio/README.md @@ -60,7 +60,7 @@ Make sure you enable the full features of the tokio crate on Cargo.toml: ```toml [dependencies] -tokio = { version = "1.52.0", features = ["full"] } +tokio = { version = "1.52.1", features = ["full"] } ``` Then, on your main.rs: