From dfb0f00838ca1986dee04a54a6299d35b0a4072c Mon Sep 17 00:00:00 2001 From: Qi Date: Sat, 3 Jan 2026 01:20:15 +0800 Subject: [PATCH] chore: prepare Tokio v1.43.4 (#7821) --- Cargo.lock | 2 +- README.md | 2 +- tokio/CHANGELOG.md | 8 ++++++++ tokio/Cargo.toml | 2 +- tokio/README.md | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 35c193819..1516133fd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1390,7 +1390,7 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.3" +version = "1.43.4" dependencies = [ "async-stream", "backtrace", diff --git a/README.md b/README.md index f26c1d9e4..646288173 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.43.3", features = ["full"] } +tokio = { version = "1.43.4", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 3ea19d2bc..4f539e0b3 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,11 @@ +# 1.43.4 (January 3rd, 2026) + +### Fixed + +* sync: return `TryRecvError::Disconnected` from `Receiver::try_recv` after `Receiver::close` ([#7686]) + +[#7686]: https://github.com/tokio-rs/tokio/pull/7686 + # 1.43.3 (October 14th, 2025) ### Fixed diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index a87b9d77d..9cde5855d 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.43.3" +version = "1.43.4" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index f26c1d9e4..646288173 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.43.3", features = ["full"] } +tokio = { version = "1.43.4", features = ["full"] } ``` Then, on your main.rs: