chore: prepare Tokio v1.52.4 (#8289)

This commit is contained in:
Alice Ryhl
2026-07-16 15:23:48 +02:00
committed by GitHub
parent b0ba02e755
commit efdba5fcf0
4 changed files with 15 additions and 3 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ Make sure you enable the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.52.3", features = ["full"] }
tokio = { version = "1.52.4", features = ["full"] }
```
Then, on your main.rs:
+12
View File
@@ -1,3 +1,15 @@
# 1.52.4 (July 16th, 2026)
### Fixed
- runtime: don't skip the driver when `before_park` schedules work ([#8222])
### Fixed (unstable)
- taskdump: remove crate disambiguators from output ([#8264])
[#8264]: https://github.com/tokio-rs/tokio/pull/8264
# 1.52.3 (May 8th, 2026)
### Fixed
+1 -1
View File
@@ -6,7 +6,7 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.x.y" git tag.
version = "1.52.3"
version = "1.52.4"
edition = "2021"
rust-version = "1.71"
authors = ["Tokio Contributors <[email protected]>"]
+1 -1
View File
@@ -60,7 +60,7 @@ Make sure you enable the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.52.3", features = ["full"] }
tokio = { version = "1.52.4", features = ["full"] }
```
Then, on your main.rs: