From 503fad79087ed5791c7a018e07621689ea5e4676 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Wed, 25 Oct 2023 12:05:47 +0200 Subject: [PATCH] chore: prepare tokio-util v0.7.10 (#6104) --- tokio-util/CHANGELOG.md | 17 +++++++++++++++++ tokio-util/Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index f1cfeaf36..b98092c4e 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.7.10 (October 24th, 2023) + +### Added + +- task: add `TaskTracker` ([#6033]) +- task: add `JoinMap::keys` ([#6046]) +- io: implement `Seek` for `SyncIoBridge` ([#6058]) + +### Changed + +- deps: update hashbrown to 0.14 ([#6102]) + +[#6033]: https://github.com/tokio-rs/tokio/pull/6033 +[#6046]: https://github.com/tokio-rs/tokio/pull/6046 +[#6058]: https://github.com/tokio-rs/tokio/pull/6058 +[#6102]: https://github.com/tokio-rs/tokio/pull/6102 + # 0.7.9 (September 20th, 2023) ### Added diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 67fd34e47..437dc5a81 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.9" +version = "0.7.10" edition = "2021" rust-version = "1.56" authors = ["Tokio Contributors "]