chore: prepare Tokio v1.47.4 (#8002)

This commit is contained in:
Alice Ryhl
2026-04-02 14:12:06 +02:00
committed by GitHub
parent bf18ed452d
commit aa65d0d0b8
5 changed files with 15 additions and 7 deletions
Generated
+3 -3
View File
@@ -123,9 +123,9 @@ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
[[package]]
name = "bytes"
version = "1.10.1"
version = "1.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
[[package]]
name = "cast"
@@ -1405,7 +1405,7 @@ dependencies = [
[[package]]
name = "tokio"
version = "1.47.2"
version = "1.47.4"
dependencies = [
"async-stream",
"backtrace",
+1 -1
View File
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.47.3", features = ["full"] }
tokio = { version = "1.47.4", features = ["full"] }
```
Then, on your main.rs:
+9 -1
View File
@@ -1,4 +1,12 @@
# 1.47.3 (Januar 3rd, 2026)
# 1.47.4 (April 2nd, 2026)
### Fixed
* sync: fix panic in `Chan::recv_many` when called with non-empty vector on closed channel ([#7991])
[#7991]: https://github.com/tokio-rs/tokio/pull/7991
# 1.47.3 (January 3rd, 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.47.3"
version = "1.47.4"
edition = "2021"
rust-version = "1.70"
authors = ["Tokio Contributors <[email protected]>"]
+1 -1
View File
@@ -56,7 +56,7 @@ Make sure you activated the full features of the tokio crate on Cargo.toml:
```toml
[dependencies]
tokio = { version = "1.47.3", features = ["full"] }
tokio = { version = "1.47.4", features = ["full"] }
```
Then, on your main.rs: