From cf1c8abe62d1d94e86c6a62ff8aa9fd6f23bc88a Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Wed, 22 Jul 2020 01:13:10 +0100 Subject: [PATCH] prepare release http & awc (#1617) --- actix-http/CHANGES.md | 11 ++++++----- actix-http/Cargo.toml | 2 +- awc/CHANGES.md | 8 ++++++++ awc/Cargo.toml | 17 ++++++++++------- 4 files changed, 25 insertions(+), 13 deletions(-) diff --git a/actix-http/CHANGES.md b/actix-http/CHANGES.md index a4bf7be9..b2b816d5 100644 --- a/actix-http/CHANGES.md +++ b/actix-http/CHANGES.md @@ -1,18 +1,19 @@ # Changes -## [Unreleased] - xxx +## Unreleased - 2020-xx-xx + + +## 2.0.0-beta.2 - 2020-07-21 ### Fixed * Potential UB in h1 decoder using uninitialized memory. [#1614] -[#1614]: https://github.com/actix/actix-web/pull/1614 - - ### Changed - * Fix illegal chunked encoding. [#1615] +[#1614]: https://github.com/actix/actix-web/pull/1614 [#1615]: https://github.com/actix/actix-web/pull/1615 + ## [2.0.0-beta.1] - 2020-07-11 ### Changed diff --git a/actix-http/Cargo.toml b/actix-http/Cargo.toml index bbb2a214..7f07f67c 100644 --- a/actix-http/Cargo.toml +++ b/actix-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-http" -version = "2.0.0-beta.1" +version = "2.0.0-beta.2" authors = ["Nikolay Kim "] description = "Actix HTTP primitives" readme = "README.md" diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 19154d35..3d2806a9 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,5 +1,13 @@ # Changes +## Unreleased - 2020-xx-xx + + +## 2.0.0-beta.2 - 2020-07-21 +### Changed +* Update `actix-http` dependency to 2.0.0-beta.2 + + ## [2.0.0-beta.1] - 2020-07-14 ### Changed * Update `actix-http` dependency to 2.0.0-beta.1 diff --git a/awc/Cargo.toml b/awc/Cargo.toml index 73dc6e0e..54db4690 100644 --- a/awc/Cargo.toml +++ b/awc/Cargo.toml @@ -1,16 +1,19 @@ [package] name = "awc" -version = "2.0.0-beta.1" +version = "2.0.0-beta.2" authors = ["Nikolay Kim "] -description = "Actix http client." +description = "Async HTTP client library that uses the Actix runtime." readme = "README.md" keywords = ["actix", "http", "framework", "async", "web"] homepage = "https://actix.rs" repository = "https://github.com/actix/actix-web.git" documentation = "https://docs.rs/awc/" -categories = ["network-programming", "asynchronous", - "web-programming::http-client", - "web-programming::websocket"] +categories = [ + "network-programming", + "asynchronous", + "web-programming::http-client", + "web-programming::websocket", +] license = "MIT OR Apache-2.0" edition = "2018" @@ -36,7 +39,7 @@ compress = ["actix-http/compress"] [dependencies] actix-codec = "0.2.0" actix-service = "1.0.1" -actix-http = "2.0.0-beta.1" +actix-http = "2.0.0-beta.2" actix-rt = "1.0.0" base64 = "0.12" @@ -56,7 +59,7 @@ rust-tls = { version = "0.17.0", package = "rustls", optional = true, features = [dev-dependencies] actix-connect = { version = "2.0.0-alpha.2", features = ["openssl"] } actix-web = { version = "3.0.0-alpha.3", features = ["openssl"] } -actix-http = { version = "2.0.0-beta.1", features = ["openssl"] } +actix-http = { version = "2.0.0-beta.2", features = ["openssl"] } actix-http-test = { version = "2.0.0-alpha.1", features = ["openssl"] } actix-utils = "1.0.3" actix-server = "1.0.0"