diff --git a/Cargo.lock b/Cargo.lock index c50991821..35c193819 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1390,7 +1390,7 @@ dependencies = [ [[package]] name = "tokio" -version = "1.43.2" +version = "1.43.3" dependencies = [ "async-stream", "backtrace", diff --git a/README.md b/README.md index b29336988..f26c1d9e4 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.2", features = ["full"] } +tokio = { version = "1.43.3", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index f790e989b..3ea19d2bc 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,15 @@ +# 1.43.3 (October 14th, 2025) + +### Fixed + +- runtime: use release ordering in `wake_by_ref()` even if already woken ([#7622]) +- sync: close the `broadcast::Sender` in `broadcast::Sender::new()` ([#7629]) +- process: fix error when runtime is shut down on nightly-2025-10-12 ([#7672]) + +[#7622]: https://github.com/tokio-rs/tokio/pull/7622 +[#7629]: https://github.com/tokio-rs/tokio/pull/7629 +[#7672]: https://github.com/tokio-rs/tokio/pull/7672 + # 1.43.2 (August 1st, 2025) ### Fixed diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 9730f0d42..a87b9d77d 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.2" +version = "1.43.3" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index b29336988..f26c1d9e4 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.2", features = ["full"] } +tokio = { version = "1.43.3", features = ["full"] } ``` Then, on your main.rs: