Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare release beta 4 #1659

Merged
merged 4 commits into from Sep 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "actix-web"
version = "3.0.0-beta.3"
version = "3.0.0-beta.4"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix web is a simple, pragmatic and extremely fast web framework for Rust."
readme = "README.md"
Expand Down Expand Up @@ -77,8 +77,8 @@ actix-threadpool = "0.3.1"
actix-tls = "2.0.0"

actix-web-codegen = "0.3.0-beta.1"
actix-http = "2.0.0-beta.3"
awc = { version = "2.0.0-beta.3", default-features = false }
actix-http = "2.0.0-beta.4"
awc = { version = "2.0.0-beta.4", default-features = false }

bytes = "0.5.3"
derive_more = "0.99.2"
Expand Down
6 changes: 3 additions & 3 deletions actix-files/Cargo.toml
Expand Up @@ -17,8 +17,8 @@ name = "actix_files"
path = "src/lib.rs"

[dependencies]
actix-web = { version = "3.0.0-beta.3", default-features = false }
actix-http = "2.0.0-beta.3"
actix-web = { version = "3.0.0-beta.4", default-features = false }
actix-http = "2.0.0-beta.4"
actix-service = "1.0.1"
bitflags = "1"
bytes = "0.5.3"
Expand All @@ -33,4 +33,4 @@ v_htmlescape = "0.10"

[dev-dependencies]
actix-rt = "1.0.0"
actix-web = { version = "3.0.0-beta.3", features = ["openssl"] }
actix-web = { version = "3.0.0-beta.4", features = ["openssl"] }
7 changes: 6 additions & 1 deletion actix-http/CHANGES.md
@@ -1,8 +1,13 @@
# Changes

## Unreleased
## Unreleased - 2020-xx-xx


## 2.0.0-beta.4 - 2020-09-09
### Changed
* Update actix-codec and actix-utils dependencies.
* Update actix-connect and actix-tls dependencies.


## [2.0.0-beta.3] - 2020-08-14

Expand Down
2 changes: 1 addition & 1 deletion actix-http/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "actix-http"
version = "2.0.0-beta.3"
version = "2.0.0-beta.4"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Actix HTTP primitives"
readme = "README.md"
Expand Down
201 changes: 0 additions & 201 deletions actix-http/LICENSE-APACHE

This file was deleted.

1 change: 1 addition & 0 deletions actix-http/LICENSE-APACHE
25 changes: 0 additions & 25 deletions actix-http/LICENSE-MIT

This file was deleted.

1 change: 1 addition & 0 deletions actix-http/LICENSE-MIT
4 changes: 2 additions & 2 deletions actix-multipart/Cargo.toml
Expand Up @@ -16,7 +16,7 @@ name = "actix_multipart"
path = "src/lib.rs"

[dependencies]
actix-web = { version = "3.0.0-beta.3", default-features = false }
actix-web = { version = "3.0.0-beta.4", default-features = false }
actix-service = "1.0.1"
actix-utils = "2.0.0"
bytes = "0.5.3"
Expand All @@ -29,4 +29,4 @@ twoway = "0.2"

[dev-dependencies]
actix-rt = "1.0.0"
actix-http = "2.0.0-beta.3"
actix-http = "2.0.0-beta.4"
4 changes: 2 additions & 2 deletions actix-web-actors/Cargo.toml
Expand Up @@ -17,8 +17,8 @@ path = "src/lib.rs"

[dependencies]
actix = "0.10.0-alpha.2"
actix-web = { version = "3.0.0-beta.3", default-features = false }
actix-http = "2.0.0-beta.3"
actix-web = { version = "3.0.0-beta.4", default-features = false }
actix-http = "2.0.0-beta.4"
actix-codec = "0.3.0"
bytes = "0.5.2"
futures-channel = { version = "0.3.5", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion actix-web-codegen/Cargo.toml
Expand Up @@ -20,5 +20,5 @@ proc-macro2 = "1"

[dev-dependencies]
actix-rt = "1.0.0"
actix-web = "3.0.0-beta.3"
actix-web = "3.0.0-beta.4"
futures-util = { version = "0.3.5", default-features = false }
5 changes: 4 additions & 1 deletion awc/CHANGES.md
@@ -1,8 +1,11 @@
# Changes

## Unreleased - 2020-xx-xx


## 2.0.0-beta.4 - 2020-09-09
### Changed
* Update actix-codec dependency.
* Update actix-codec & actix-tls dependencies.


## 2.0.0-beta.3 - 2020-08-17
Expand Down
8 changes: 4 additions & 4 deletions awc/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "awc"
version = "2.0.0-beta.3"
version = "2.0.0-beta.4"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Async HTTP client library that uses the Actix runtime."
readme = "README.md"
Expand Down Expand Up @@ -39,7 +39,7 @@ compress = ["actix-http/compress"]
[dependencies]
actix-codec = "0.3.0"
actix-service = "1.0.1"
actix-http = "2.0.0-beta.3"
actix-http = "2.0.0-beta.4"
actix-rt = "1.0.0"

base64 = "0.12"
Expand All @@ -58,8 +58,8 @@ rust-tls = { version = "0.18.0", package = "rustls", optional = true, features =

[dev-dependencies]
actix-connect = { version = "2.0.0", features = ["openssl"] }
actix-web = { version = "3.0.0-beta.2", features = ["openssl"] }
actix-http = { version = "2.0.0-beta.3", features = ["openssl"] }
actix-web = { version = "3.0.0-beta.4", features = ["openssl"] }
actix-http = { version = "2.0.0-beta.4", features = ["openssl"] }
actix-http-test = { version = "2.0.0-alpha.1", features = ["openssl"] }
actix-utils = "2.0.0"
actix-server = "1.0.0"
Expand Down
6 changes: 3 additions & 3 deletions test-server/Cargo.toml
Expand Up @@ -36,7 +36,7 @@ actix-utils = "2.0.0"
actix-rt = "1.0.0"
actix-server = "1.0.0"
actix-testing = "1.0.0"
awc = "2.0.0-beta.3"
awc = "2.0.0-beta.4"

base64 = "0.12"
bytes = "0.5.3"
Expand All @@ -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.3"
actix-http = "2.0.0-beta.3"
actix-web = "3.0.0-beta.4"
actix-http = "2.0.0-beta.4"