From 4d4d12613bb30f6b550421d6ce2c2c54eb5d341d Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Wed, 23 Apr 2025 13:13:48 +0200 Subject: [PATCH] chore: prepare tokio-util v0.7.15 (#7283) --- tokio-util/CHANGELOG.md | 18 ++++++++++++++++++ tokio-util/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index 896857b27..735c1d917 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,21 @@ +# 0.7.15 (April 23rd, 2025) + +### Fixed + +- task: properly handle removed entries in `JoinMap` ([#7264]) + +### Updated + +- deps: update hashbrown to 0.15 ([#7219]) + +### Documented + +- task: explicitly state that `TaskTracker` does not abort tasks on Drop ([#7223]) + +[#7219]: https://github.com/tokio-rs/tokio/pull/7219 +[#7223]: https://github.com/tokio-rs/tokio/pull/7223 +[#7264]: https://github.com/tokio-rs/tokio/pull/7264 + # 0.7.14 (March 12th, 2025) ### Added diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 971286cbd..4187ebfb5 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.14" +version = "0.7.15" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "]