From 4abe9d732eb01f7b092a571c3dcc4fbd266f4067 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Mon, 4 May 2026 14:39:25 +0200 Subject: [PATCH] chore: prepare Tokio v1.52.2 (#8115) --- README.md | 2 +- tokio/CHANGELOG.md | 5 +++++ tokio/Cargo.toml | 2 +- tokio/README.md | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 567c7332d..657a5f3f4 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.1", features = ["full"] } +tokio = { version = "1.52.2", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index d9a2da4a9..442ac5b8c 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.52.2 (May 4th, 2026) + +This release reverts the LIFO slot stealing change introduced in 1.51.0 +([#7431]), due to [its performance impact][#8065]. ([#8100]) + # 1.52.1 (April 16th, 2026) ## Fixed diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index b0bedbed9..21f450e19 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.1" +version = "1.52.2" edition = "2021" rust-version = "1.71" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index 567c7332d..657a5f3f4 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.1", features = ["full"] } +tokio = { version = "1.52.2", features = ["full"] } ``` Then, on your main.rs: