summaryrefslogtreecommitdiffstats
path: root/tokio-tls
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2019-08-30 10:20:44 -0700
committerGitHub <noreply@github.com>2019-08-30 10:20:44 -0700
commit6a94d2cf4f325b228aab2da9e878c92d19666764 (patch)
tree624d3aee391233df79cfe82948e68e24d7097712 /tokio-tls
parent4f99470d465fa33affa89d98c51f141f6ba3cdbf (diff)
tls: bump to v0.3.0-alpha.4 (#1515)
Diffstat (limited to 'tokio-tls')
-rw-r--r--tokio-tls/CHANGELOG.md5
-rw-r--r--tokio-tls/Cargo.toml4
-rw-r--r--tokio-tls/src/lib.rs2
3 files changed, 8 insertions, 3 deletions
diff --git a/tokio-tls/CHANGELOG.md b/tokio-tls/CHANGELOG.md
index c69ac211..0cb88e56 100644
--- a/tokio-tls/CHANGELOG.md
+++ b/tokio-tls/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.3.0-alpha.4 (August 30, 2019)
+
+### Changed
+- Track `tokio` 0.2.0-alpha.4
+
# 0.3.0-alpha.2 (August 17, 2019)
### Changed
diff --git a/tokio-tls/Cargo.toml b/tokio-tls/Cargo.toml
index 9e6f1e67..e04358b6 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.2"
+version = "0.3.0-alpha.4"
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.2/tokio_tls/"
+documentation = "https://docs.rs/tokio-tls/0.3.0-alpha.4/tokio_tls/"
description = """
An implementation of TLS/SSL streams for Tokio giving an implementation of TLS
for nonblocking I/O streams.
diff --git a/tokio-tls/src/lib.rs b/tokio-tls/src/lib.rs
index 9963ace4..e754c3ab 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.2")]
+#![doc(html_root_url = "https://docs.rs/tokio-tls/0.3.0-alpha.4")]
#![warn(
missing_debug_implementations,
missing_docs,