diff --git a/README.md b/README.md index d8e70b55e1a..c59566173c3 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index 0357579ee0b..da140d415a8 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -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 diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 23873e5b409..ac789e242f9 100644 --- a/tokio/Cargo.toml +++ b/tokio/Cargo.toml @@ -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 "] diff --git a/tokio/README.md b/tokio/README.md index d8e70b55e1a..c59566173c3 100644 --- a/tokio/README.md +++ b/tokio/README.md @@ -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: