From 8b8005ebddbce0ec6d5e437905d00b91f3999b97 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Sat, 12 Aug 2023 09:37:49 -0700 Subject: [PATCH] chore: prepare Tokio v1.31.0 release (#5928) --- README.md | 2 +- tokio/CHANGELOG.md | 15 +++++++++++++++ tokio/Cargo.toml | 2 +- tokio/README.md | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index baee6a0ed..20f8ca2fd 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.30.0", features = ["full"] } +tokio = { version = "1.31.0", features = ["full"] } ``` Then, on your main.rs: diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md index b73a5e62d..df4cfdf1f 100644 --- a/tokio/CHANGELOG.md +++ b/tokio/CHANGELOG.md @@ -1,3 +1,18 @@ +# 1.31.0 (August 10, 2023) + +### Fixed + +* io: delegate `WriteHalf::poll_write_vectored` ([#5914]) + +### Unstable + +* rt(unstable): fix memory leak in unstable next-gen scheduler prototype ([#5911]) +* rt: expose mean task poll time metric ([#5927]) + +[#5914]: https://github.com/tokio-rs/tokio/pull/5914 +[#5911]: https://github.com/tokio-rs/tokio/pull/5911 +[#5927]: https://github.com/tokio-rs/tokio/pull/5927 + # 1.30.0 (August 9, 2023) This release bumps the MSRV of Tokio to 1.63. ([#5887]) diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml index 022c99431..378a49578 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.30.0" +version = "1.31.0" edition = "2021" rust-version = "1.63" authors = ["Tokio Contributors "] diff --git a/tokio/README.md b/tokio/README.md index baee6a0ed..20f8ca2fd 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.30.0", features = ["full"] } +tokio = { version = "1.31.0", features = ["full"] } ``` Then, on your main.rs: