From aa03622cf3205b2afd37b2cf4067c3474d2779c4 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Fri, 29 Oct 2021 18:34:23 +0200 Subject: [PATCH] chore: prepare tokio-util 0.6.9 (#4199) --- tokio-util/CHANGELOG.md | 17 +++++++++++++++++ tokio-util/Cargo.toml | 4 ++-- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index 9b6171ef4..3dd100c30 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.6.9 (October 29, 2021) + +### Added + +- codec: implement `Clone` for `LengthDelimitedCodec` ([#4089]) +- io: add `SyncIoBridge` ([#4146]) + +### Fixed + +- time: update deadline on removal in `DelayQueue` ([#4178]) +- codec: Update stream impl for Framed to return None after Err ([#4166]) + +[#4089]: https://github.com/tokio-rs/tokio/pull/4089 +[#4146]: https://github.com/tokio-rs/tokio/pull/4146 +[#4166]: https://github.com/tokio-rs/tokio/pull/4166 +[#4178]: https://github.com/tokio-rs/tokio/pull/4178 + # 0.6.8 (September 3, 2021) ### Added diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 9229cb26f..676b0e2ec 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -6,13 +6,13 @@ name = "tokio-util" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-util-0.6.x" git tag. -version = "0.6.8" +version = "0.6.9" edition = "2018" authors = ["Tokio Contributors "] license = "MIT" repository = "https://github.com/tokio-rs/tokio" homepage = "https://tokio.rs" -documentation = "https://docs.rs/tokio-util/0.6.8/tokio_util" +documentation = "https://docs.rs/tokio-util/0.6.9/tokio_util" description = """ Additional utilities for working with Tokio. """