Bump tokio-tls to v0.2.0 (#531)

This prepares the crate for release.
This commit is contained in:
Carl Lerche
2018-08-08 10:17:28 -07:00
committed by GitHub
parent decc83e959
commit 89d6bfc5cb
3 changed files with 10 additions and 4 deletions
+3
View File
@@ -0,0 +1,3 @@
# 0.2.0 (August 8, 2018)
* Initial release with `tokio` support.
+6 -3
View File
@@ -1,8 +1,11 @@
[package]
name = "tokio-tls"
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Create "tokio-tls-0.2.x" git tag.
version = "0.2.0"
authors = ["Carl Lerche <[email protected]>",
"Alex Crichton <[email protected]>"]
authors = ["Carl Lerche <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
@@ -19,7 +22,7 @@ travis-ci = { repository = "tokio-rs/tokio-tls" }
[dependencies]
futures = "0.1.23"
native-tls = "0.2"
tokio-io = { version = "0.1", path = "../tokio-io" }
tokio-io = { version = "0.1.7", path = "../tokio-io" }
[dev-dependencies]
tokio = { version = "0.1", path = "../" }
+1 -1
View File
@@ -16,7 +16,7 @@
//! `native-tls` crate.
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.1")]
#![doc(html_root_url = "https://docs.rs/tokio-tls/0.2.0")]
extern crate futures;
extern crate native_tls;