1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-01-18 20:01:48 +01:00

Merge pull request #117 from actix/new-connect

Release actix-http v2.0.0-alpha.2
This commit is contained in:
Yuki Okushi 2020-03-08 15:13:52 +09:00 committed by GitHub
commit 4be11b541b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 7 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "actix-connect"
version = "2.0.0-alpha.1"
version = "2.0.0-alpha.2"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix connect - tcp connector service"
keywords = ["network", "framework", "async", "futures"]

View File

@ -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"