diff --git a/actix-tls/CHANGES.md b/actix-tls/CHANGES.md index e11fc40e..404b9cf7 100644 --- a/actix-tls/CHANGES.md +++ b/actix-tls/CHANGES.md @@ -1,11 +1,12 @@ # Changes -## [1.0.1] - 2020-03-01 +## [2.0.0-alpha.1] - 2020-03-03 ### Changed * Update `rustls` dependency to 0.17 * Update `tokio-rustls` dependency to 0.13 +* Update `webpki-roots` dependency to 0.19 ## [1.0.0] - 2019-12-11 diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 912fc82a..58baadc1 100644 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-tls" -version = "1.0.0" +version = "2.0.0-alpha.1" authors = ["Nikolay Kim "] description = "Actix tls services" keywords = ["network", "framework", "async", "futures"] @@ -48,7 +48,7 @@ tokio-openssl = { version = "0.4.0", optional = true } # rustls rust-tls = { version = "0.17.0", package = "rustls", optional = true } webpki = { version = "0.21", optional = true } -webpki-roots = { version = "0.17", optional = true } +webpki-roots = { version = "0.19", optional = true } tokio-rustls = { version = "0.13.0", optional = true } # native-tls