summaryrefslogtreecommitdiffstats
path: root/tokio-util
diff options
context:
space:
mode:
authorNikhil Benesch <nikhil.benesch@gmail.com>2020-03-18 20:05:55 -0400
committerGitHub <noreply@github.com>2020-03-18 20:05:55 -0400
commit5fd1b8f67c4a9976ed76f304484a4213283a3d6b (patch)
tree7d150d68808820f2fd83211f4f5cab6491048502 /tokio-util
parent9e58b37ad57835a48a4d1016f33f899db14c91c5 (diff)
util: Prepare `0.3.1` release (#2330)
Diffstat (limited to 'tokio-util')
-rw-r--r--tokio-util/CHANGELOG.md7
-rw-r--r--tokio-util/Cargo.toml4
-rw-r--r--tokio-util/src/lib.rs2
3 files changed, 10 insertions, 3 deletions
diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md
index 01b4f8c3..9847064a 100644
--- a/tokio-util/CHANGELOG.md
+++ b/tokio-util/CHANGELOG.md
@@ -1,3 +1,10 @@
+# 0.3.1 (March 18, 2020)
+
+### Fixed
+
+- Adjust minimum-supported Tokio version to v0.2.5 to account for an internal
+ dependency on features in that version of Tokio. (#2326)
+
# 0.3.0 (March 4, 2020)
### Changed
diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml
index 97ecc60a..b79bc017 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.3.0"
+version = "0.3.1"
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.3.0/tokio_util"
+documentation = "https://docs.rs/tokio-util/0.3.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 44ec2b74..260c9485 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.3.0")]
+#![doc(html_root_url = "https://docs.rs/tokio-util/0.3.1")]
#![allow(clippy::needless_doctest_main)]
#![warn(
missing_debug_implementations,