summaryrefslogtreecommitdiffstats
path: root/tokio
diff options
context:
space:
mode:
authorSean McArthur <sean@seanmonstar.com>2019-08-29 12:59:10 -0700
committerCarl Lerche <me@carllerche.com>2019-08-29 12:59:10 -0700
commit15dc0563b73d9da3eabdbac89e55b9cfcef691e4 (patch)
treeda6ba4f427882bb1427971f326c1a4b32bb62f5a /tokio
parent4e26258ac340b76ef27f1d38d967cfb2b682c2a4 (diff)
prepare v0.2.0-alpha.4 (#1509)
Diffstat (limited to 'tokio')
-rw-r--r--tokio/CHANGELOG.md4
-rw-r--r--tokio/Cargo.toml26
-rw-r--r--tokio/src/lib.rs2
3 files changed, 18 insertions, 14 deletions
diff --git a/tokio/CHANGELOG.md b/tokio/CHANGELOG.md
index 503152c9..d905ddfb 100644
--- a/tokio/CHANGELOG.md
+++ b/tokio/CHANGELOG.md
@@ -1,6 +1,10 @@
This changelog only applies to the `tokio` crate proper. Each sub crate
maintains its own changelog tracking changes made in each respective sub crate.
+# 0.2.0-alpha.4 (August 29, 2019)
+
+- Track tokio-net release.
+
# 0.2.0-alpha.3 (August 28, 2019)
### Changed
diff --git a/tokio/Cargo.toml b/tokio/Cargo.toml
index b009d997..3ba58feb 100644
--- a/tokio/Cargo.toml
+++ b/tokio/Cargo.toml
@@ -8,12 +8,12 @@ name = "tokio"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.2.x" git tag.
-version = "0.2.0-alpha.3"
+version = "0.2.0-alpha.4"
edition = "2018"
authors = ["Tokio Contributors <team@tokio.rs>"]
license = "MIT"
readme = "README.md"
-documentation = "https://docs.rs/tokio/0.2.0-alpha.3/tokio/"
+documentation = "https://docs.rs/tokio/0.2.0-alpha.4/tokio/"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
description = """
@@ -64,22 +64,22 @@ futures-util-preview = { version = "=0.3.0-alpha.18", features = ["sink"] }
# Everything else is optional...
bytes = { version = "0.4", optional = true }
num_cpus = { version = "1.8.0", optional = true }
-tokio-codec = { version = "=0.2.0-alpha.3", optional = true, path = "../tokio-codec" }
-tokio-fs = { version = "=0.2.0-alpha.3", optional = true, path = "../tokio-fs" }
-tokio-io = { version = "=0.2.0-alpha.3", optional = true, features = ["util"], path = "../tokio-io" }
-tokio-executor = { version = "=0.2.0-alpha.3", optional = true, path = "../tokio-executor" }
-tokio-macros = { version = "=0.2.0-alpha.3", optional = true, path = "../tokio-macros" }
-tokio-net = { version = "=0.2.0-alpha.3", optional = true, features = ["async-traits"], path = "../tokio-net" }
-tokio-sync = { version = "=0.2.0-alpha.3", optional = true, path = "../tokio-sync", features = ["async-traits"] }
-tokio-timer = { version = "=0.3.0-alpha.3", optional = true, path = "../tokio-timer", features = ["async-traits"] }
+tokio-codec = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-codec" }
+tokio-fs = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-fs" }
+tokio-io = { version = "=0.2.0-alpha.4", optional = true, features = ["util"], path = "../tokio-io" }
+tokio-executor = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-executor" }
+tokio-macros = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-macros" }
+tokio-net = { version = "=0.2.0-alpha.4", optional = true, features = ["async-traits"], path = "../tokio-net" }
+tokio-sync = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-sync", features = ["async-traits"] }
+tokio-timer = { version = "=0.3.0-alpha.4", optional = true, path = "../tokio-timer", features = ["async-traits"] }
tracing-core = { version = "0.1", optional = true }
[target.'cfg(feature = "tracing")'.dependencies]
-tokio-net = { version = "=0.2.0-alpha.3", optional = true, path = "../tokio-net", features = ["tracing", "async-traits"] }
-tokio-executor = { version = "=0.2.0-alpha.3", optional = true, path = "../tokio-executor", features = ["tracing"] }
+tokio-net = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-net", features = ["tracing", "async-traits"] }
+tokio-executor = { version = "=0.2.0-alpha.4", optional = true, path = "../tokio-executor", features = ["tracing"] }
[dev-dependencies]
-tokio-test = { version = "0.2.0-alpha.3", path = "../tokio-test" }
+tokio-test = { version = "0.2.0-alpha.4", path = "../tokio-test" }
futures-preview = "=0.3.0-alpha.18"
futures-util-preview = "=0.3.0-alpha.18"
diff --git a/tokio/src/lib.rs b/tokio/src/lib.rs
index c7f32ebc..6302aca9 100644
--- a/tokio/src/lib.rs
+++ b/tokio/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio/0.2.0-alpha.3")]
+#![doc(html_root_url = "https://docs.rs/tokio/0.2.0-alpha.4")]
#![warn(
missing_debug_implementations,
missing_docs,