]> git.feebdaed.xyz Git - 0xmirror/tokio.git/commitdiff
chore: prepare Tokio v1.47.1 (#7504)
authorAlice Ryhl <aliceryhl@google.com>
Fri, 1 Aug 2025 11:20:34 +0000 (13:20 +0200)
committerGitHub <noreply@github.com>
Fri, 1 Aug 2025 11:20:34 +0000 (13:20 +0200)
README.md
tokio/CHANGELOG.md
tokio/Cargo.toml
tokio/README.md

index 32a2c4649694ff23ce7d3cc2c6f1b65f325ad8f7..a0609dd79c077a6eeb76a18c7b98731feca3a7e5 100644 (file)
--- 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:
 
index f4b3f352e3850ee2e3b9d21a42874bee34876620..149bb0e76da57609d8398e758e5bf21c87e45c4c 100644 (file)
@@ -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
index 5be5efd9887b5a92dae9531e9e10b156029c36e3..8512cc576b6c89a96de40d52b6d7b9d2e542c94e 100644 (file)
@@ -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 <team@tokio.rs>"]
index 32a2c4649694ff23ce7d3cc2c6f1b65f325ad8f7..a0609dd79c077a6eeb76a18c7b98731feca3a7e5 100644 (file)
@@ -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: