summaryrefslogtreecommitdiffstats
path: root/tokio-tls
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-08-17 23:34:25 -0700
committerGitHub <noreply@github.com>2019-08-17 23:34:25 -0700
commit88b4ec84d7f0f1653e2a9bb3231076fc18a91cb3 (patch)
tree68aefffcac44c32a85791ae0ee15c38a1422e52b /tokio-tls
parent9f0daad5acafdd35c1577856e01021293d10849c (diff)
chore: prepare 0.2.0-alpha.2 release (#1465)
Diffstat (limited to 'tokio-tls')
-rw-r--r--tokio-tls/CHANGELOG.md5
-rw-r--r--tokio-tls/Cargo.toml10
-rw-r--r--tokio-tls/src/lib.rs2
3 files changed, 11 insertions, 6 deletions
diff --git a/tokio-tls/CHANGELOG.md b/tokio-tls/CHANGELOG.md
index 478237e1..c69ac211 100644
--- a/tokio-tls/CHANGELOG.md
+++ b/tokio-tls/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.3.0-alpha.2 (August 17, 2019)
+
+### Changed
+- Update `futures` dependency to 0.3.0-alpha.18.
+
# 0.3.0-alpha.1 (August 8, 2019)
### Changed
diff --git a/tokio-tls/Cargo.toml b/tokio-tls/Cargo.toml
index 6c177009..746f187d 100644
--- a/tokio-tls/Cargo.toml
+++ b/tokio-tls/Cargo.toml
@@ -8,13 +8,13 @@ name = "tokio-tls"
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.3.x" git tag.
-version = "0.3.0-alpha.1"
+version = "0.3.0-alpha.2"
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-tls/0.3.0-alpha.1/tokio_tls/"
+documentation = "https://docs.rs/tokio-tls/0.3.0-alpha.2/tokio_tls/"
description = """
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
for nonblocking I/O streams.
@@ -26,11 +26,11 @@ travis-ci = { repository = "tokio-rs/tokio-tls" }
[dependencies]
native-tls = "0.2"
-tokio-io = { version = "=0.2.0-alpha.1", path = "../tokio-io" }
+tokio-io = { version = "=0.2.0-alpha.2", path = "../tokio-io" }
[dev-dependencies]
-tokio = { version = "=0.2.0-alpha.1", path = "../tokio" }
-tokio-net = { version = "=0.2.0-alpha.1", path = "../tokio-net", features = ["tcp", "async-traits"] }
+tokio = { version = "=0.2.0-alpha.2", path = "../tokio" }
+tokio-net = { version = "=0.2.0-alpha.2", path = "../tokio-net", features = ["tcp", "async-traits"] }
cfg-if = "0.1"
env_logger = { version = "0.6", default-features = false }
diff --git a/tokio-tls/src/lib.rs b/tokio-tls/src/lib.rs
index 06b997ab..38366c2a 100644
--- a/tokio-tls/src/lib.rs
+++ b/tokio-tls/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.0-alpha.1")]
+#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.0-alpha.2")]
#![warn(
missing_debug_implementations,
missing_docs,