diff --git a/tokio-tls/CHANGELOG.md b/tokio-tls/CHANGELOG.md new file mode 100644 index 000000000..238f85f2a --- /dev/null +++ b/tokio-tls/CHANGELOG.md @@ -0,0 +1,3 @@ +# 0.2.0 (August 8, 2018) + +* Initial release with `tokio` support. diff --git a/tokio-tls/Cargo.toml b/tokio-tls/Cargo.toml index b49d15afd..1ac73e5a7 100644 --- a/tokio-tls/Cargo.toml +++ b/tokio-tls/Cargo.toml @@ -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 ", - "Alex Crichton "] +authors = ["Carl Lerche "] 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 = "../" } diff --git a/tokio-tls/src/lib.rs b/tokio-tls/src/lib.rs index 3e763c87f..b44e2bf9d 100644 --- a/tokio-tls/src/lib.rs +++ b/tokio-tls/src/lib.rs @@ -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;