From dfdb550cd46733e58fced076e08c9f121f5c1d08 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Thu, 8 Sep 2022 10:34:23 +0200 Subject: [PATCH] chore: prepare tokio-util 0.7.4 (#4987) --- tokio-util/CHANGELOG.md | 22 ++++++++++++++++++++++ tokio-util/Cargo.toml | 4 ++-- 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index ffa80e4bad6..ca378b1ed20 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,25 @@ +# 0.7.4 (September 8, 2022) + +### Added + +- io: add `SyncIoBridge::shutdown()` ([#4938]) +- task: improve `LocalPoolHandle` ([#4680]) + +### Fixed + +- util: add `track_caller` to public APIs ([#4785]) + +### Unstable + +- task: fix compilation errors in `JoinMap` with Tokio v1.21.0 ([#4755]) +- task: remove the unstable, deprecated `JoinMap::join_one` ([#4920]) + +[#4680]: https://github.com/tokio-rs/tokio/pull/4680 +[#4755]: https://github.com/tokio-rs/tokio/pull/4755 +[#4785]: https://github.com/tokio-rs/tokio/pull/4785 +[#4920]: https://github.com/tokio-rs/tokio/pull/4920 +[#4938]: https://github.com/tokio-rs/tokio/pull/4938 + # 0.7.3 (June 4, 2022) ### Changed diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 6406af635ae..d5a9f748c18 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -4,7 +4,7 @@ name = "tokio-util" # - Remove path dependencies # - Update CHANGELOG.md. # - Create "tokio-util-0.7.x" git tag. -version = "0.7.3" +version = "0.7.4" edition = "2018" rust-version = "1.49" authors = ["Tokio Contributors "] @@ -34,7 +34,7 @@ rt = ["tokio/rt", "tokio/sync", "futures-util", "hashbrown"] __docs_rs = ["futures-util"] [dependencies] -tokio = { version = "1.19.0", path = "../tokio", features = ["sync"] } +tokio = { version = "1.21.0", path = "../tokio", features = ["sync"] } bytes = "1.0.0" futures-core = "0.3.0" futures-sink = "0.3.0"