From cd18569143972b84f9aa2b9da5a69542bf47b18a Mon Sep 17 00:00:00 2001 From: Daiki Mizukami Date: Mon, 11 Jan 2021 05:58:07 +0900 Subject: [PATCH] chore: prepare tokio-util v0.6.1 release - codec: `get_ref()`, `get_mut()`, `get_pin_mut()` and `into_inner()` for `Framed`, `FramedRead`, `FramedWrite`, `StreamReader`, `StreamReader`, `StreamReader` and `StreamReader` (#3364). - codec: `write_buffer()` and `write_buffer_mut()` for `Framed` and `FramedWrite` (#3387). --- tokio-util/CHANGELOG.md | 12 ++++++++++++ tokio-util/Cargo.toml | 4 ++-- tokio-util/src/lib.rs | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md index 460e6bcc3db..75ef869e59d 100644 --- a/tokio-util/CHANGELOG.md +++ b/tokio-util/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.6.1 (January 10, 2020) + +### Added + +- codec: `get_ref()`, `get_mut()`, `get_pin_mut()` and `into_inner()` for + `Framed`, `FramedRead`, `FramedWrite`, `StreamReader`, `StreamReader`, + `StreamReader` and `StreamReader` ([#3364]). +- codec: `write_buffer()` and `write_buffer_mut()` for `Framed` and + `FramedWrite` ([#3387]). + # 0.6.0 (December 23, 2020) ### Changed @@ -53,6 +63,8 @@ - Initial release +[#3387]: https://github.com/tokio-rs/tokio/pull/3387 +[#3364]: https://github.com/tokio-rs/tokio/pull/3364 [#2326]: https://github.com/tokio-rs/tokio/pull/2326 [#2215]: https://github.com/tokio-rs/tokio/pull/2215 [#2198]: https://github.com/tokio-rs/tokio/pull/2198 diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml index 72717d2106b..4a1d3a0e556 100644 --- a/tokio-util/Cargo.toml +++ b/tokio-util/Cargo.toml @@ -7,13 +7,13 @@ name = "tokio-util" # - Cargo.toml # - Update CHANGELOG.md. # - Create "tokio-util-0.6.x" git tag. -version = "0.6.0" +version = "0.6.1" 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.0/tokio_util" +documentation = "https://docs.rs/tokio-util/0.6.1/tokio_util" description = """ Additional utilities for working with Tokio. """ diff --git a/tokio-util/src/lib.rs b/tokio-util/src/lib.rs index 065c6298b68..d16ea1e0afe 100644 --- a/tokio-util/src/lib.rs +++ b/tokio-util/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/tokio-util/0.6.0")] +#![doc(html_root_url = "https://docs.rs/tokio-util/0.6.1")] #![allow(clippy::needless_doctest_main)] #![warn( missing_debug_implementations,