From 75fef53d0a8590c2d1dbb63672aa7b7d1ef51155 Mon Sep 17 00:00:00 2001 From: ADD-SP Date: Tue, 21 Jul 2026 01:05:08 +0800 Subject: [PATCH] chore: prepare Tokio v1.53.1 (#8303) --- README.md | 2 +- tokio/CHANGELOG.md | 18 ++++++++++++++++++ tokio/Cargo.toml | 2 +- tokio/README.md | 2 +- 4 files changed, 21 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 48e7a86d3..7a929d20b 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.53.0", features = ["full"] } +tokio = { version = "1.53.1", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 37ac7bb1c..6d9fdc8f2 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,21 @@ +# 1.53.1 (July 20th, 2026) + +### Fixed + +- signal: restore MSRV by removing `OnceLock::wait` from the Windows handler ([#8300]) + +### Fixed (unstable) + +- time: fix alt timer cancellation and insertion race ([#8252]) + +### Documented + +- runtime: remove dead link definition in Runtime::block_on ([#8301]) + +[#8252]: https://github.com/tokio-rs/tokio/pull/8252 +[#8300]: https://github.com/tokio-rs/tokio/pull/8300 +[#8301]: https://github.com/tokio-rs/tokio/pull/8301 + # 1.53.0 (July 17th, 2026) ### Added diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 518b677d0..e260bbc5b 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.53.0" +version = "1.53.1" edition = "2021" rust-version = "1.71" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index 48e7a86d3..7a929d20b 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.53.0", features = ["full"] } +tokio = { version = "1.53.1", features = ["full"] } ``` Then, on your main.rs: