From 35f244ad096b5331a38edd5a8f0beb436104873e Mon Sep 17 00:00:00 2001 From: Timo Date: Thu, 5 Sep 2024 00:22:11 +0200 Subject: [PATCH] chore: prepare tokio-util v0.7.12 (#6823) --- tokio-util/CHANGELOG.md | 24 ++++++++++++++++++++++++ tokio-util/Cargo.toml | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index 729c0352df6..db589136bab 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,27 @@ +# 0.7.12 (September 5th, 2024) + +This release bumps the MSRV to 1.70. ([#6645]) + +### Added +- sync: Add `run_until_cancelled` to `tokio_util::sync::CancellationToken` ([#6618]) +- task: add `AbortOnDropHandle` type ([#6786]) + +### Changed +- deps: no default features for hashbrown ([#6541]) +- time: wake `DelayQueue` when removing last item ([#6752]) +- deps: enable the full feature when compiled for the playground ([#6818]) + +### Documented +- task: fix typo in `TaskTracker` docs ([#6792]) + +[#6645]: https://github.com/tokio-rs/tokio/pull/6645 +[#6541]: https://github.com/tokio-rs/tokio/pull/6541 +[#6618]: https://github.com/tokio-rs/tokio/pull/6618 +[#6752]: https://github.com/tokio-rs/tokio/pull/6752 +[#6786]: https://github.com/tokio-rs/tokio/pull/6786 +[#6792]: https://github.com/tokio-rs/tokio/pull/6792 +[#6818]: https://github.com/tokio-rs/tokio/pull/6818 + # 0.7.11 (May 4th, 2024) This release updates the MSRV to 1.63. ([#6126]) diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 19a33c9e083..a73eec8799a 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.11" +version = "0.7.12" edition = "2021" rust-version = "1.70" authors = ["Tokio Contributors "]