Skip to content

Commit d0c08db

Browse files
authored
prepare releases: actix-http 3.0.0 and actix-web 4.0.0 (#2663)
1 parent d0b5fb1 commit d0c08db

File tree

19 files changed

+613
-36
lines changed

19 files changed

+613
-36
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Changes
1+
# Changelog
22

33
Changelogs are kept separately for each crate in this repo.
44

actix-files/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ path = "src/lib.rs"
2222
experimental-io-uring = ["actix-web/experimental-io-uring", "tokio-uring"]
2323

2424
[dependencies]
25-
actix-http = "3.0.0-rc.4"
25+
actix-http = "3.0.0"
2626
actix-service = "2"
2727
actix-utils = "3"
28-
actix-web = { version = "4.0.0-rc.3", default-features = false }
28+
actix-web = { version = "4.0.0", default-features = false }
2929

3030
askama_escape = "0.10"
3131
bitflags = "1"
@@ -44,5 +44,5 @@ tokio-uring = { version = "0.2", optional = true, features = ["bytes"] }
4444
[dev-dependencies]
4545
actix-rt = "2.2"
4646
actix-test = "0.1.0-beta.13"
47-
actix-web = "4.0.0-rc.3"
47+
actix-web = "4.0.0"
4848
tempfile = "3.2"

actix-http-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ tls-openssl = { version = "0.10.9", package = "openssl", optional = true }
5151
tokio = { version = "1.8.4", features = ["sync"] }
5252

5353
[dev-dependencies]
54-
actix-web = { version = "4.0.0-rc.3", default-features = false, features = ["cookies"] }
55-
actix-http = "3.0.0-rc.4"
54+
actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
55+
actix-http = "3.0.0"

actix-http/CHANGES.md

Lines changed: 286 additions & 3 deletions
Large diffs are not rendered by default.

actix-http/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "actix-http"
3-
version = "3.0.0-rc.4"
3+
version = "3.0.0"
44
authors = [
55
"Nikolay Kim <fafhrd91@gmail.com>",
66
"Rob Ede <robjtede@icloud.com>",
@@ -100,7 +100,7 @@ zstd = { version = "0.10", optional = true }
100100
actix-http-test = { version = "3.0.0-beta.13", features = ["openssl"] }
101101
actix-server = "2"
102102
actix-tls = { version = "3", features = ["openssl"] }
103-
actix-web = "4.0.0-rc.3"
103+
actix-web = "4.0.0"
104104

105105
async-stream = "0.3"
106106
criterion = { version = "0.3", features = ["html_reports"] }

actix-http/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
> HTTP primitives for the Actix ecosystem.
44
55
[![crates.io](https://img.shields.io/crates/v/actix-http?label=latest)](https://crates.io/crates/actix-http)
6-
[![Documentation](https://docs.rs/actix-http/badge.svg?version=3.0.0-rc.4)](https://docs.rs/actix-http/3.0.0-rc.4)
6+
[![Documentation](https://docs.rs/actix-http/badge.svg?version=3.0.0)](https://docs.rs/actix-http/3.0.0)
77
[![Version](https://img.shields.io/badge/rustc-1.54+-ab6000.svg)](https://blog.rust-lang.org/2021/05/06/Rust-1.54.0.html)
88
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-http.svg)
99
<br />
10-
[![dependency status](https://deps.rs/crate/actix-http/3.0.0-rc.4/status.svg)](https://deps.rs/crate/actix-http/3.0.0-rc.4)
10+
[![dependency status](https://deps.rs/crate/actix-http/3.0.0/status.svg)](https://deps.rs/crate/actix-http/3.0.0)
1111
[![Download](https://img.shields.io/crates/d/actix-http.svg)](https://crates.io/crates/actix-http)
1212
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)
1313

actix-multipart/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ path = "src/lib.rs"
1515

1616
[dependencies]
1717
actix-utils = "3.0.0"
18-
actix-web = { version = "4.0.0-rc.3", default-features = false }
18+
actix-web = { version = "4.0.0", default-features = false }
1919

2020
bytes = "1"
2121
derive_more = "0.99.5"
@@ -28,7 +28,7 @@ twoway = "0.2"
2828

2929
[dev-dependencies]
3030
actix-rt = "2.2"
31-
actix-http = "3.0.0-rc.4"
31+
actix-http = "3.0.0"
3232
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
3333
tokio = { version = "1.8.4", features = ["sync"] }
3434
tokio-stream = "0.1"

actix-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ openssl = ["tls-openssl", "actix-http/openssl", "awc/openssl"]
2929

3030
[dependencies]
3131
actix-codec = "0.5"
32-
actix-http = "3.0.0-rc.4"
32+
actix-http = "3.0.0"
3333
actix-http-test = "3.0.0-beta.13"
3434
actix-rt = "2.1"
3535
actix-service = "2.0.0"
3636
actix-utils = "3.0.0"
37-
actix-web = { version = "4.0.0-rc.3", default-features = false, features = ["cookies"] }
37+
actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
3838
awc = { version = "3.0.0-beta.21", default-features = false, features = ["cookies"] }
3939

4040
futures-core = { version = "0.3.7", default-features = false, features = ["std"] }

actix-web-actors/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ path = "src/lib.rs"
1616
[dependencies]
1717
actix = { version = "0.12.0", default-features = false }
1818
actix-codec = "0.5"
19-
actix-http = "3.0.0-rc.4"
20-
actix-web = { version = "4.0.0-rc.3", default-features = false }
19+
actix-http = "3.0.0"
20+
actix-web = { version = "4.0.0", default-features = false }
2121

2222
bytes = "1"
2323
bytestring = "1"

actix-web-codegen/CHANGES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
## Unreleased - 2021-xx-xx
44

55

6+
## 4.0.0 - 2022-02-24
7+
- Version aligned with `actix-web` and will remain in sync going forward.
8+
- No significant changes since `0.5.0`.
9+
10+
11+
## 0.5.0 - 2022-02-24
12+
- No significant changes since `0.5.0-rc.2`.
13+
14+
615
## 0.5.0-rc.2 - 2022-02-01
716
- No significant changes since `0.5.0-rc.1`.
817

0 commit comments

Comments
 (0)