From be8ee45b3fc2d107174e586141b1cb12c93e2ddf Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 1 Aug 2025 13:20:34 +0200 Subject: [PATCH] chore: prepare Tokio v1.47.1 (#7504) --- 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 32a2c4649..a0609dd79 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.47.0", features = ["full"] } +tokio = { version = "1.47.1", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index f4b3f352e..149bb0e76 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,12 @@ +# 1.47.1 (August 1st, 2025) + +### Fixed + +- process: fix panic from spurious pidfd wakeup ([#7494]) +- sync: fix broken link of Python `asyncio.Event` in `SetOnce` docs ([#7485]) + +[#7485]: https://github.com/tokio-rs/tokio/pull/7485 + # 1.47.0 (July 25th, 2025) This release adds `poll_proceed` and `cooperative` to the `coop` module for diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 5be5efd98..8512cc576 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.47.0" +version = "1.47.1" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index 32a2c4649..a0609dd79 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.47.0", features = ["full"] } +tokio = { version = "1.47.1", features = ["full"] } ``` Then, on your main.rs: