From a05135a4f8866679dca7ad721fa37ab447ccbb47 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 28 Mar 2022 14:34:11 +0200 Subject: [PATCH] chore: prepare tokio-util 0.7.1 release (#4521) --- tokio-util/CHANGELOG.md | 22 ++++++++++++++++++++++ tokio-util/Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index 96a45374384..80722ddd74a 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,25 @@ +# 0.7.1 (February 21, 2022) + +### Added + +- codec: add `length_field_type` to `LengthDelimitedCodec` builder ([#4508]) +- io: add `StreamReader::into_inner_with_chunk()` ([#4559]) + +### Changed + +- switch from log to tracing ([#4539]) + +### Fixed + +- sync: fix waker update condition in `CancellationToken` ([#4497]) +- bumped tokio dependency to 1.6 to satisfy minimum requirements ([#4490]) + +[#4490]: https://github.com/tokio-rs/tokio/pull/4490 +[#4497]: https://github.com/tokio-rs/tokio/pull/4497 +[#4508]: https://github.com/tokio-rs/tokio/pull/4508 +[#4539]: https://github.com/tokio-rs/tokio/pull/4539 +[#4559]: https://github.com/tokio-rs/tokio/pull/4559 + # 0.7.0 (February 9, 2022) ### Added diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 70b98837118..252f90a8d36 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.0" +version = "0.7.1" edition = "2018" rust-version = "1.49" authors = ["Tokio Contributors "]