chore: prepare tokio-util v0.6.1 release (#3402)

This commit is contained in:
Daiki Mizukami
2021-01-12 12:46:07 +01:00
committed by GitHub
parent da09213c9f
commit ed667c669a
3 changed files with 14 additions and 3 deletions
+11
View File
@@ -1,3 +1,12 @@
# 0.6.1 (January 12, 2020)
### Added
- codec: `get_ref()`, `get_mut()`, `get_pin_mut()` and `into_inner()` for
`Framed`, `FramedRead`, `FramedWrite` and `StreamReader` ([#3364]).
- codec: `write_buffer()` and `write_buffer_mut()` for `Framed` and
`FramedWrite` ([#3387]).
# 0.6.0 (December 23, 2020)
### Changed
@@ -53,6 +62,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
+2 -2
View File
@@ -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 <[email protected]>"]
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.
"""
+1 -1
View File
@@ -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,