From 2bf50826b0736db8852096b4d311f2842ba22d53 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sun, 8 Mar 2020 14:37:33 +0900 Subject: [PATCH 1/2] Bump up to 2.0.0-alpha.2 --- actix-connect/CHANGES.md | 12 +++++++----- actix-connect/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/actix-connect/CHANGES.md b/actix-connect/CHANGES.md index 9df80434..cd1dc373 100644 --- a/actix-connect/CHANGES.md +++ b/actix-connect/CHANGES.md @@ -1,13 +1,15 @@ # Changes -## [TBD] - TBD +## [2.0.0-alpha.2] - 2020-03-08 ### Changed -* Update `trust-dns-proto` dependency to 0.19 [#116] -* Update `trust-dns-resolver` dependency to 0.19 [#116] -* `Address` trait is now required to have static lifetime [#116] -* `start_resolver` and `start_default_resolver` are now `async` and may return a `ConnectError` [#116] +* Update `trust-dns-proto` dependency to 0.19. [#116] +* Update `trust-dns-resolver` dependency to 0.19. [#116] +* `Address` trait is now required to have static lifetime. [#116] +* `start_resolver` and `start_default_resolver` are now `async` and may return a `ConnectError`. [#116] + +[#116]: https://github.com/actix/actix-net/pull/116 ## [2.0.0-alpha.1] - 2020-03-03 diff --git a/actix-connect/Cargo.toml b/actix-connect/Cargo.toml index d76e92c3..fb1674e5 100644 --- a/actix-connect/Cargo.toml +++ b/actix-connect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-connect" -version = "2.0.0-alpha.1" +version = "2.0.0-alpha.2" authors = ["Nikolay Kim "] description = "Actix connect - tcp connector service" keywords = ["network", "framework", "async", "futures"] From baba533407f36315ab4395e84e6a73a971681107 Mon Sep 17 00:00:00 2001 From: Yuki Okushi Date: Sun, 8 Mar 2020 14:38:07 +0900 Subject: [PATCH 2/2] Update `actix-http` dependency --- actix-ioframe/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-ioframe/Cargo.toml b/actix-ioframe/Cargo.toml index 13a7eeed..555efada 100644 --- a/actix-ioframe/Cargo.toml +++ b/actix-ioframe/Cargo.toml @@ -27,5 +27,5 @@ pin-project = "0.4.6" log = "0.4" [dev-dependencies] -actix-connect = "2.0.0-alpha.1" +actix-connect = "2.0.0-alpha.2" actix-testing = "1.0.0"