Skip to content

Commit

Permalink
prepare web release 4.0.0-beta.6
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Apr 17, 2021
1 parent f743e88 commit b2d6b6a
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changes

## Unreleased - 2021-xx-xx


## 4.0.0-beta.6 - 2021-04-17
### Added
* `HttpResponse` and `HttpResponseBuilder` structs. [#2065]

Expand Down
11 changes: 4 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
[package]
name = "actix-web"
version = "4.0.0-beta.5"
version = "4.0.0-beta.6"
authors = ["Nikolay Kim <[email protected]>"]
description = "Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust"
readme = "README.md"
keywords = ["actix", "http", "web", "framework", "async"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
documentation = "https://docs.rs/actix-web/"
categories = ["network-programming", "asynchronous",
"web-programming::http-server",
"web-programming::websocket"]
"web-programming::http-server", "web-programming::websocket"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web"
license = "MIT OR Apache-2.0"
edition = "2018"

Expand Down
4 changes: 2 additions & 2 deletions actix-files/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name = "actix_files"
path = "src/lib.rs"

[dependencies]
actix-web = { version = "4.0.0-beta.5", default-features = false }
actix-web = { version = "4.0.0-beta.6", default-features = false }
actix-service = "2.0.0"
actix-utils = "3.0.0"

Expand All @@ -34,5 +34,5 @@ percent-encoding = "2.1"

[dev-dependencies]
actix-rt = "2.2"
actix-web = "4.0.0-beta.5"
actix-web = "4.0.0-beta.6"
actix-test = "0.1.0-beta.1"
2 changes: 1 addition & 1 deletion actix-http-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ time = { version = "0.2.23", default-features = false, features = ["std"] }
tls-openssl = { version = "0.10.9", package = "openssl", optional = true }

[dev-dependencies]
actix-web = { version = "4.0.0-beta.5", default-features = false, features = ["cookies"] }
actix-web = { version = "4.0.0-beta.6", default-features = false, features = ["cookies"] }
actix-http = "3.0.0-beta.6"
2 changes: 1 addition & 1 deletion actix-multipart/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name = "actix_multipart"
path = "src/lib.rs"

[dependencies]
actix-web = { version = "4.0.0-beta.5", default-features = false }
actix-web = { version = "4.0.0-beta.6", default-features = false }
actix-utils = "3.0.0"

bytes = "1"
Expand Down
2 changes: 1 addition & 1 deletion actix-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ actix-http = "3.0.0-beta.6"
actix-http-test = { version = "3.0.0-beta.4", features = [] }
actix-service = "2.0.0"
actix-utils = "3.0.0"
actix-web = { version = "4.0.0-beta.5", default-features = false, features = ["cookies"] }
actix-web = { version = "4.0.0-beta.6", default-features = false, features = ["cookies"] }
actix-rt = "2.1"
awc = { version = "3.0.0-beta.4", default-features = false, features = ["cookies"] }

Expand Down
2 changes: 1 addition & 1 deletion actix-web-actors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ path = "src/lib.rs"
actix = { version = "0.11.0-beta.3", default-features = false }
actix-codec = "0.4.0-beta.1"
actix-http = "3.0.0-beta.6"
actix-web = { version = "4.0.0-beta.5", default-features = false }
actix-web = { version = "4.0.0-beta.6", default-features = false }

bytes = "1"
bytestring = "1"
Expand Down
2 changes: 1 addition & 1 deletion actix-web-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ proc-macro2 = "1"
actix-rt = "2.2"
actix-test = "0.1.0-beta.1"
actix-utils = "3.0.0"
actix-web = "4.0.0-beta.5"
actix-web = "4.0.0-beta.6"

futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
trybuild = "1"
Expand Down
2 changes: 1 addition & 1 deletion awc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ tls-openssl = { version = "0.10.9", package = "openssl", optional = true }
tls-rustls = { version = "0.19.0", package = "rustls", optional = true, features = ["dangerous_configuration"] }

[dev-dependencies]
actix-web = { version = "4.0.0-beta.5", features = ["openssl"] }
actix-web = { version = "4.0.0-beta.6", features = ["openssl"] }
actix-http = { version = "3.0.0-beta.6", features = ["openssl"] }
actix-http-test = { version = "3.0.0-beta.4", features = ["openssl"] }
actix-utils = "3.0.0"
Expand Down

0 comments on commit b2d6b6a

Please sign in to comment.