From 361ead271c2c4070bda40ff9c902c045f9f9dd5d Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 6 Feb 2021 17:05:15 +0000 Subject: [PATCH] prepare tls release 3.0.0-beta.3 --- actix-server/Cargo.toml | 2 +- actix-tls/CHANGES.md | 5 +++++ actix-tls/Cargo.toml | 4 ++-- actix-utils/CHANGES.md | 4 +++- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 8b968352..1c3da21e 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -26,7 +26,7 @@ default = [] actix-codec = "0.4.0-beta.1" actix-rt = { version = "2.0.0", default-features = false } actix-service = "2.0.0-beta.4" -actix-utils = "3.0.0-beta.1" +actix-utils = "3.0.0-beta.2" futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } log = "0.4" diff --git a/actix-tls/CHANGES.md b/actix-tls/CHANGES.md index 11a1a410..090c2112 100644 --- a/actix-tls/CHANGES.md +++ b/actix-tls/CHANGES.md @@ -1,6 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx + + +## 3.0.0-beta.3 - 2021-02-06 * Remove `trust-dns-proto` and `trust-dns-resolver`. [#248] * Use `std::net::ToSocketAddrs` as simple and basic default resolver. [#248] * Add `Resolve` trait for custom dns resolver. [#248] @@ -10,8 +13,10 @@ * Remove `ConnectTakeAddrsIter`. `Connect::take_addrs` now returns `ConnectAddrsIter<'static>` as owned iterator. [#248] * Rename `Address::{host => hostname}` to more accurately describe which URL segment is returned. +* Update `actix-rt` to `2.0.0`. [#273] [#248]: https://github.com/actix/actix-net/pull/248 +[#273]: https://github.com/actix/actix-net/pull/273 ## 3.0.0-beta.2 - 2021-xx-xx diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 09d47157..81da3d56 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-tls" -version = "3.0.0-beta.2" +version = "3.0.0-beta.3" authors = ["Nikolay Kim "] description = "TLS acceptor and connector services for Actix ecosystem" keywords = ["network", "tls", "ssl", "async", "transport"] @@ -43,7 +43,7 @@ uri = ["http"] actix-codec = "0.4.0-beta.1" actix-rt = { version = "2.0.0", default-features = false } actix-service = "2.0.0-beta.4" -actix-utils = "3.0.0-beta.1" +actix-utils = "3.0.0-beta.2" derive_more = "0.99.5" futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } diff --git a/actix-utils/CHANGES.md b/actix-utils/CHANGES.md index 3a0f376f..a7871612 100644 --- a/actix-utils/CHANGES.md +++ b/actix-utils/CHANGES.md @@ -4,7 +4,9 @@ ## 3.0.0-beta.2 - 2021-02-06 -* Update `actix-rt` to `2.0.0`. [#???] +* Update `actix-rt` to `2.0.0`. [#273] + +[#273]: https://github.com/actix/actix-net/pull/273 ## 3.0.0-beta.1 - 2020-12-28