chore: prepare Tokio v1.51.1 (#8023)

This commit is contained in:
Alice Ryhl
2026-04-08 12:37:44 +02:00
committed by GitHub
parent 3ea11e2a5f
commit 98df02d7a4
4 changed files with 20 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.51.0", features = ["full"] }
tokio = { version = "1.51.1", features = ["full"] }
```
Then, on your main.rs:
+17
View File
@@ -1,3 +1,20 @@
# 1.51.1 (April 8th, 2026)
### Fixed
- sync: fix semaphore reopens after forget ([#8021])
- net: surface errors from `SO_ERROR` on `recv` for UDP sockets on Linux ([#8001])
### Fixed (unstable)
- metrics: fix `worker_local_schedule_count` test ([#8008])
- rt: do not leak fd when cancelling io\_uring open operation ([#7983])
[#7983]: https://github.com/tokio-rs/tokio/pull/7983
[#8001]: https://github.com/tokio-rs/tokio/pull/8001
[#8008]: https://github.com/tokio-rs/tokio/pull/8008
[#8021]: https://github.com/tokio-rs/tokio/pull/8021
# 1.51.0 (April 3rd, 2026)
### Added
+1 -1
View File
@@ -6,7 +6,7 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.x.y" git tag.
version = "1.51.0"
version = "1.51.1"
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.51.0", features = ["full"] }
tokio = { version = "1.51.1", features = ["full"] }
```
Then, on your main.rs: