summaryrefslogtreecommitdiffstats
path: root/tokio-util
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-11-26 09:17:27 -0800
committerGitHub <noreply@github.com>2019-11-26 09:17:27 -0800
commita81e2722a43ff2748ac99c1a65cd50fd00274db9 (patch)
treef31ee7f176a2d7bbf9e9fd298082f99ec8048e0b /tokio-util
parent4ddc4371709562d2bd1d0373f0555f7c31926e53 (diff)
chore: prepare v0.2.0 release (#1822)
Diffstat (limited to 'tokio-util')
-rw-r--r--tokio-util/CHANGELOG.md3
-rw-r--r--tokio-util/Cargo.toml12
-rw-r--r--tokio-util/src/lib.rs2
3 files changed, 10 insertions, 7 deletions
diff --git a/tokio-util/CHANGELOG.md b/tokio-util/CHANGELOG.md
index e69de29b..48022e34 100644
--- a/tokio-util/CHANGELOG.md
+++ b/tokio-util/CHANGELOG.md
@@ -0,0 +1,3 @@
+# 0.2.0 (November 26, 2019)
+
+- Initial release
diff --git a/tokio-util/Cargo.toml b/tokio-util/Cargo.toml
index 356712c6..7f40660a 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.2.0-alpha.6"
+version = "0.2.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.2.0-alpha.6/tokio_util"
+documentation = "https://docs.rs/tokio-util/0.2.0/tokio_util"
description = """
Additional utilities for working with Tokio.
"""
@@ -30,17 +30,17 @@ codec = []
udp = ["tokio/udp"]
[dependencies]
-tokio = { version = "=0.2.0-alpha.6", path = "../tokio" }
+tokio = { version = "0.2.0", path = "../tokio" }
-bytes = { git = "https://github.com/tokio-rs/bytes" }
+bytes = "0.5.0"
futures-core = "0.3.0"
futures-sink = "0.3.0"
log = "0.4"
pin-project-lite = "0.1.1"
[dev-dependencies]
-tokio = { version = "=0.2.0-alpha.6", path = "../tokio", features = ["full"] }
-tokio-test = { version = "=0.2.0-alpha.6", path = "../tokio-test" }
+tokio = { version = "0.2.0", path = "../tokio", features = ["full"] }
+tokio-test = { version = "0.2.0", path = "../tokio-test" }
futures = "0.3.0"
diff --git a/tokio-util/src/lib.rs b/tokio-util/src/lib.rs
index d4ed5a7b..4cb54dfb 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.2.0-alpha.6")]
+#![doc(html_root_url = "https://docs.rs/tokio-util/0.2.0")]
#![warn(
missing_debug_implementations,
missing_docs,