mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-24 00:00:11 +02:00
chore: prepare Tokio v1.51.1 (#8023)
This commit is contained in:
@@ -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:
|
||||
|
||||
|
||||
@@ -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
@@ -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
@@ -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:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user