util: prepare v0.5.1 release (#3210)

### Added

- io: `poll_read_buf` util fn (#2972).
- io: `poll_write_buf` util fn with vectored write support (#3156).

Signed-off-by: Eliza Weisman <[email protected]>
This commit is contained in:
Eliza Weisman
2020-12-03 15:30:52 -08:00
committed by GitHub
parent 647299866a
commit 00500d1b35
3 changed files with 6 additions and 3 deletions
+3
View File
@@ -1,5 +1,8 @@
# 0.5.1 (December 3, 2020)
### Added
- io: `poll_read_buf` util fn (#2972).
- io: `poll_write_buf` util fn with vectored write support (#3156).
# 0.5.0 (October 30, 2020)
+2 -2
View File
@@ -7,13 +7,13 @@ name = "tokio-util"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
version = "0.5.0"
version = "0.5.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.5.0/tokio_util"
documentation = "https://docs.rs/tokio-util/0.5.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.5.0")]
#![doc(html_root_url = "https://docs.rs/tokio-util/0.5.1")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,