From aa65d0d0b8ea6eec80985b9d231390f137493071 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Thu, 2 Apr 2026 14:12:06 +0200 Subject: [PATCH] chore: prepare Tokio v1.47.4 (#8002) --- Cargo.lock | 6 +++--- README.md | 2 +- tokio/CHANGELOG.md | 10 +++++++++- tokio/Cargo.toml | 2 +- tokio/README.md | 2 +- 5 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e0634fc3b..d1a338d43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -123,9 +123,9 @@ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43" [[package]] name = "bytes" -version = "1.10.1" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] name = "cast" @@ -1405,7 +1405,7 @@ dependencies = [ [[package]] name = "tokio" -version = "1.47.2" +version = "1.47.4" dependencies = [ "async-stream", "backtrace", diff --git a/README.md b/README.md index 14e812bc4..a0e2e47ae 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.3", features = ["full"] } +tokio = { version = "1.47.4", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 197c2224f..128fbd0d4 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,4 +1,12 @@ -# 1.47.3 (Januar 3rd, 2026) +# 1.47.4 (April 2nd, 2026) + +### Fixed + +* sync: fix panic in `Chan::recv_many` when called with non-empty vector on closed channel ([#7991]) + +[#7991]: https://github.com/tokio-rs/tokio/pull/7991 + +# 1.47.3 (January 3rd, 2026) ### Fixed diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index d87ce00b3..e0e83a19d 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.3" +version = "1.47.4" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index 14e812bc4..a0e2e47ae 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.3", features = ["full"] } +tokio = { version = "1.47.4", features = ["full"] } ``` Then, on your main.rs: