1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-10 17:29:36 +00:00

awc,web: Bump up to next beta releases (#1638)

This commit is contained in:
Yuki Okushi 2020-08-18 01:08:40 +09:00 committed by GitHub
parent ff2ca0f420
commit 5802eb797f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 13 additions and 13 deletions

View file

@ -1,6 +1,6 @@
# Changes
## Unreleased
## 3.0.0-beta.3 - 2020-08-17
### Changed
* Update `rustls` to 0.18

View file

@ -1,6 +1,6 @@
[package]
name = "actix-web"
version = "3.0.0-beta.2"
version = "3.0.0-beta.3"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
readme = "README.md"
@ -78,7 +78,7 @@ actix-tls = "2.0.0-alpha.2"
actix-web-codegen = "0.3.0-beta.1"
actix-http = "2.0.0-beta.3"
awc = { version = "2.0.0-beta.1", default-features = false }
awc = { version = "2.0.0-beta.3", default-features = false }
bytes = "0.5.3"
derive_more = "0.99.2"

View file

@ -17,7 +17,7 @@ name = "actix_files"
path = "src/lib.rs"
[dependencies]
actix-web = { version = "3.0.0-beta.2", default-features = false }
actix-web = { version = "3.0.0-beta.3", default-features = false }
actix-http = "2.0.0-beta.3"
actix-service = "1.0.1"
bitflags = "1"
@ -33,4 +33,4 @@ v_htmlescape = "0.10"
[dev-dependencies]
actix-rt = "1.0.0"
actix-web = { version = "3.0.0-beta.2", features = ["openssl"] }
actix-web = { version = "3.0.0-beta.3", features = ["openssl"] }

View file

@ -16,7 +16,7 @@ name = "actix_multipart"
path = "src/lib.rs"
[dependencies]
actix-web = { version = "3.0.0-beta.2", default-features = false }
actix-web = { version = "3.0.0-beta.3", default-features = false }
actix-service = "1.0.1"
actix-utils = "1.0.3"
bytes = "0.5.3"

View file

@ -17,7 +17,7 @@ path = "src/lib.rs"
[dependencies]
actix = "0.10.0-alpha.2"
actix-web = { version = "3.0.0-beta.2", default-features = false }
actix-web = { version = "3.0.0-beta.3", default-features = false }
actix-http = "2.0.0-beta.3"
actix-codec = "0.2.0"
bytes = "0.5.2"

View file

@ -20,5 +20,5 @@ proc-macro2 = "1"
[dev-dependencies]
actix-rt = "1.0.0"
actix-web = "3.0.0-beta.2"
actix-web = "3.0.0-beta.3"
futures-util = { version = "0.3.5", default-features = false }

View file

@ -1,6 +1,6 @@
# Changes
## Unreleased - 2020-xx-xx
## 2.0.0-beta.3 - 2020-08-17
### Changed
* Update `rustls` to 0.18

View file

@ -1,6 +1,6 @@
[package]
name = "awc"
version = "2.0.0-beta.2"
version = "2.0.0-beta.3"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Async HTTP client library that uses the Actix runtime."
readme = "README.md"
@ -58,7 +58,7 @@ rust-tls = { version = "0.18.0", package = "rustls", optional = true, features =
[dev-dependencies]
actix-connect = { version = "2.0.0-alpha.4", features = ["openssl"] }
actix-web = { version = "3.0.0-beta.2", features = ["openssl"] }
actix-web = { version = "3.0.0-beta.3", features = ["openssl"] }
actix-http = { version = "2.0.0-beta.3", features = ["openssl"] }
actix-http-test = { version = "2.0.0-alpha.1", features = ["openssl"] }
actix-utils = "1.0.3"

View file

@ -36,7 +36,7 @@ actix-utils = "1.0.3"
actix-rt = "1.0.0"
actix-server = "1.0.0"
actix-testing = "1.0.0"
awc = "2.0.0-alpha.2"
awc = "2.0.0-beta.3"
base64 = "0.12"
bytes = "0.5.3"
@ -52,5 +52,5 @@ time = { version = "0.2.7", default-features = false, features = ["std"] }
open-ssl = { version = "0.10", package = "openssl", optional = true }
[dev-dependencies]
actix-web = "3.0.0-beta.2"
actix-web = "3.0.0-beta.3"
actix-http = "2.0.0-beta.3"