summaryrefslogtreecommitdiffstats
path: root/tokio-util
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2020-10-30 11:26:15 -0700
committerGitHub <noreply@github.com>2020-10-30 11:26:15 -0700
commit24ed874e81fa27a6505613051955127ba8ddfdf2 (patch)
tree1783253604ece79eb44fb6efb79cdc06d510a088 /tokio-util
parent3965d91a5eb25a7b3e3fc978fcb431822140efb7 (diff)
chore: prepare tokio-util v0.5.0 release (#3078)
Diffstat (limited to 'tokio-util')
-rw-r--r--tokio-util/CHANGELOG.md8
-rw-r--r--tokio-util/Cargo.toml4
-rw-r--r--tokio-util/src/lib.rs2
3 files changed, 11 insertions, 3 deletions
diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md
index e9aa0bac..64228895 100644
--- a/tokio-util/CHANGELOG.md
+++ b/tokio-util/CHANGELOG.md
@@ -1,3 +1,11 @@
+# 0.5.0 (October 30, 2020)
+
+### Changed
+- io: update `bytes` to 0.6 (#3071).
+
+### Added
+- io: `poll_read_buf` util fn (#2972).
+
# 0.4.0 (October 15, 2020)
### Added
diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml
index c1b2ee66..ba2f3a4f 100644
--- a/tokio-util/Cargo.toml
+++ b/tokio-util/Cargo.toml
@@ -7,13 +7,13 @@ name = "tokio-util"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
-version = "0.4.0"
+version = "0.5.0"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-util/0.4.0/tokio_util"
+documentation = "https://docs.rs/tokio-util/0.5.0/tokio_util"
description = """
Additional utilities for working with Tokio.
"""
diff --git a/tokio-util/src/lib.rs b/tokio-util/src/lib.rs
index f4cf9470..253f4437 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.4.0")]
+#![doc(html_root_url = "https://docs.rs/tokio-util/0.5.0")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,