summaryrefslogtreecommitdiffstats
path: root/tokio-net
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-net
parentfc1640891e1cb4a2bf1ab032452e0e3ef6daf22c (diff)
prepare v0.2.0-alpha.3 release (#1505)
Diffstat (limited to 'tokio-net')
-rw-r--r--tokio-net/CHANGELOG.md11
-rw-r--r--tokio-net/Cargo.toml16
-rw-r--r--tokio-net/src/lib.rs2
3 files changed, 20 insertions, 9 deletions
diff --git a/tokio-net/CHANGELOG.md b/tokio-net/CHANGELOG.md
index b6ef6ee0..c0fcdbd5 100644
--- a/tokio-net/CHANGELOG.md
+++ b/tokio-net/CHANGELOG.md
@@ -1,3 +1,14 @@
+# 0.2.0-alpha.3 (August 28, 2019)
+
+### Changed
+- `signal::ctrl_c()` instead of `CtrlC::new()` (#1472).
+- `TcpStream`'s `AsyncWrite::shutdown` impl calls TCP shutdown (#1488).
+- use `tracing` instead of `log` (#1455).
+- perform DNS lookup on `connect` and `bind` (#1499).
+
+### Added
+- import `tokio-process` (#1475).
+
# 0.2.0-alpha.2 (August 17, 2019)
### Changed
diff --git a/tokio-net/Cargo.toml b/tokio-net/Cargo.toml
index fef18775..dfbef35f 100644
--- a/tokio-net/Cargo.toml
+++ b/tokio-net/Cargo.toml
@@ -7,14 +7,14 @@ name = "tokio-net"
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.2.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"
readme = "README.md"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
-documentation = "https://docs.rs/tokio-net/0.2.0-alpha.2/tokio_net"
+documentation = "https://docs.rs/tokio-net/0.2.0-alpha.3/tokio_net"
description = """
Event loop that drives Tokio I/O resources.
"""
@@ -61,10 +61,10 @@ uds = [
log = ["tracing/log"]
[dependencies]
-tokio-codec = { version = "=0.2.0-alpha.2", path = "../tokio-codec" }
-tokio-executor = { version = "=0.2.0-alpha.2", features = ["blocking"], path = "../tokio-executor" }
-tokio-io = { version = "=0.2.0-alpha.2", path = "../tokio-io" }
-tokio-sync = { version = "=0.2.0-alpha.2", path = "../tokio-sync" }
+tokio-codec = { version = "=0.2.0-alpha.3", path = "../tokio-codec" }
+tokio-executor = { version = "=0.2.0-alpha.3", features = ["blocking"], path = "../tokio-executor" }
+tokio-io = { version = "=0.2.0-alpha.3", path = "../tokio-io" }
+tokio-sync = { version = "=0.2.0-alpha.3", path = "../tokio-sync" }
tracing = { version = "0.1.5", optional = true }
@@ -102,8 +102,8 @@ optional = true
tracing = { version = "0.1.5", features = ["log"] }
[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" }
num_cpus = "1.8.0"
tokio-io-pool = "0.1.4"
diff --git a/tokio-net/src/lib.rs b/tokio-net/src/lib.rs
index 5618c512..eab2a3f0 100644
--- a/tokio-net/src/lib.rs
+++ b/tokio-net/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-net/0.2.0-alpha.2")]
+#![doc(html_root_url = "https://docs.rs/tokio-net/0.2.0-alpha.3")]
#![warn(
missing_debug_implementations,
missing_docs,