chore: prepare Tokio v1.41.1 (#6959)

Signed-off-by: Alice Ryhl <[email protected]>
This commit is contained in:
Alice Ryhl
2024-11-07 11:56:09 +01:00
committed by GitHub
parent 4a34b77af5
commit bb7ca7507b
4 changed files with 15 additions and 3 deletions
+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.41.0", features = ["full"] }
tokio = { version = "1.41.1", features = ["full"] }
```
Then, on your main.rs:
+12
View File
@@ -1,3 +1,15 @@
# 1.41.1 (Nov 7th, 2024)
### Fixed
- metrics: fix bug with wrong number of buckets for the histogram ([#6957])
- net: display `net` requirement for `net::UdpSocket` in docs ([#6938])
- net: fix typo in `TcpStream` internal comment ([#6944])
[#6957]: https://github.com/tokio-rs/tokio/pull/6957
[#6938]: https://github.com/tokio-rs/tokio/pull/6938
[#6944]: https://github.com/tokio-rs/tokio/pull/6944
# 1.41.0 (Oct 22th, 2024)
### Added
+1 -1
View File
@@ -6,7 +6,7 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v1.x.y" git tag.
version = "1.41.0"
version = "1.41.1"
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.41.0", features = ["full"] }
tokio = { version = "1.41.1", features = ["full"] }
```
Then, on your main.rs: