summaryrefslogtreecommitdiffstats
path: root/tokio-io
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-08-28 15:04:42 -0700
committerGitHub <noreply@github.com>2019-08-28 15:04:42 -0700
commita59e096c4740204993ab2017dbb5098a35f93992 (patch)
treedac76e669c47c7c56983a60b3e4ff4ae5236b4e2 /tokio-io
parentfc1640891e1cb4a2bf1ab032452e0e3ef6daf22c (diff)
prepare v0.2.0-alpha.3 release (#1505)
Diffstat (limited to 'tokio-io')
-rw-r--r--tokio-io/CHANGELOG.md5
-rw-r--r--tokio-io/Cargo.toml8
-rw-r--r--tokio-io/src/lib.rs2
3 files changed, 10 insertions, 5 deletions
diff --git a/tokio-io/CHANGELOG.md b/tokio-io/CHANGELOG.md
index 2c2540ec..d2c5af0f 100644
--- a/tokio-io/CHANGELOG.md
+++ b/tokio-io/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.2.0-alpha.3 (August 28, 2019)
+
+### Added
+- `AsyncReadExt::chain` and `AsyncReadExt::take` (#1484).
+
# 0.2.0-alpha.2 (August 17, 2019)
### Changed
diff --git a/tokio-io/Cargo.toml b/tokio-io/Cargo.toml
index c4a58ba6..2dbb0414 100644
--- a/tokio-io/Cargo.toml
+++ b/tokio-io/Cargo.toml
@@ -7,13 +7,13 @@ name = "tokio-io"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
-version = "0.2.0-alpha.2"
+version = "0.2.0-alpha.3"
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-io/0.2.0-alpha.2/tokio_io"
+documentation = "https://docs.rs/tokio-io/0.2.0-alpha.3/tokio_io"
description = """
Core I/O primitives for asynchronous I/O in Rust.
"""
@@ -30,8 +30,8 @@ memchr = { version = "2.2", optional = true }
pin-utils = { version = "=0.1.0-alpha.4", optional = true }
[dev-dependencies]
-tokio = { version = "0.2.0-alpha.1", path = "../tokio" }
-tokio-test = { version = "0.2.0-alpha.1", path = "../tokio-test" }
+tokio = { version = "0.2.0-alpha.3", path = "../tokio" }
+tokio-test = { version = "0.2.0-alpha.3", path = "../tokio-test" }
futures-util-preview = "=0.3.0-alpha.18"
diff --git a/tokio-io/src/lib.rs b/tokio-io/src/lib.rs
index fe2c3fc5..035e59d8 100644
--- a/tokio-io/src/lib.rs
+++ b/tokio-io/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-io/0.2.0-alpha.2")]
+#![doc(html_root_url = "https://docs.rs/tokio-io/0.2.0-alpha.3")]
#![warn(
missing_debug_implementations,
missing_docs,