Skip to content

Commit

Permalink
prepare releases: actix-http 3.0.0 and actix-web 4.0.0 (#2663)
Browse files Browse the repository at this point in the history
  • Loading branch information
robjtede committed Feb 25, 2022
1 parent d0b5fb1 commit d0c08db
Show file tree
Hide file tree
Showing 19 changed files with 613 additions and 36 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
@@ -1,4 +1,4 @@
# Changes
# Changelog

Changelogs are kept separately for each crate in this repo.

Expand Down
6 changes: 3 additions & 3 deletions actix-files/Cargo.toml
Expand Up @@ -22,10 +22,10 @@ path = "src/lib.rs"
experimental-io-uring = ["actix-web/experimental-io-uring", "tokio-uring"]

[dependencies]
actix-http = "3.0.0-rc.4"
actix-http = "3.0.0"
actix-service = "2"
actix-utils = "3"
actix-web = { version = "4.0.0-rc.3", default-features = false }
actix-web = { version = "4.0.0", default-features = false }

askama_escape = "0.10"
bitflags = "1"
Expand All @@ -44,5 +44,5 @@ tokio-uring = { version = "0.2", optional = true, features = ["bytes"] }
[dev-dependencies]
actix-rt = "2.2"
actix-test = "0.1.0-beta.13"
actix-web = "4.0.0-rc.3"
actix-web = "4.0.0"
tempfile = "3.2"
4 changes: 2 additions & 2 deletions actix-http-test/Cargo.toml
Expand Up @@ -51,5 +51,5 @@ tls-openssl = { version = "0.10.9", package = "openssl", optional = true }
tokio = { version = "1.8.4", features = ["sync"] }

[dev-dependencies]
actix-web = { version = "4.0.0-rc.3", default-features = false, features = ["cookies"] }
actix-http = "3.0.0-rc.4"
actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
actix-http = "3.0.0"
289 changes: 286 additions & 3 deletions actix-http/CHANGES.md

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions actix-http/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "actix-http"
version = "3.0.0-rc.4"
version = "3.0.0"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
Expand Down Expand Up @@ -100,7 +100,7 @@ zstd = { version = "0.10", optional = true }
actix-http-test = { version = "3.0.0-beta.13", features = ["openssl"] }
actix-server = "2"
actix-tls = { version = "3", features = ["openssl"] }
actix-web = "4.0.0-rc.3"
actix-web = "4.0.0"

async-stream = "0.3"
criterion = { version = "0.3", features = ["html_reports"] }
Expand Down
4 changes: 2 additions & 2 deletions actix-http/README.md
Expand Up @@ -3,11 +3,11 @@
> HTTP primitives for the Actix ecosystem.
[![crates.io](https://img.shields.io/crates/v/actix-http?label=latest)](https://crates.io/crates/actix-http)
[![Documentation](https://docs.rs/actix-http/badge.svg?version=3.0.0-rc.4)](https://docs.rs/actix-http/3.0.0-rc.4)
[![Documentation](https://docs.rs/actix-http/badge.svg?version=3.0.0)](https://docs.rs/actix-http/3.0.0)
[![Version](https://img.shields.io/badge/rustc-1.54+-ab6000.svg)](https://blog.rust-lang.org/2021/05/06/Rust-1.54.0.html)
![MIT or Apache 2.0 licensed](https://img.shields.io/crates/l/actix-http.svg)
<br />
[![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)
[![dependency status](https://deps.rs/crate/actix-http/3.0.0/status.svg)](https://deps.rs/crate/actix-http/3.0.0)
[![Download](https://img.shields.io/crates/d/actix-http.svg)](https://crates.io/crates/actix-http)
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)

Expand Down
4 changes: 2 additions & 2 deletions actix-multipart/Cargo.toml
Expand Up @@ -15,7 +15,7 @@ path = "src/lib.rs"

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

bytes = "1"
derive_more = "0.99.5"
Expand All @@ -28,7 +28,7 @@ twoway = "0.2"

[dev-dependencies]
actix-rt = "2.2"
actix-http = "3.0.0-rc.4"
actix-http = "3.0.0"
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
tokio = { version = "1.8.4", features = ["sync"] }
tokio-stream = "0.1"
4 changes: 2 additions & 2 deletions actix-test/Cargo.toml
Expand Up @@ -29,12 +29,12 @@ openssl = ["tls-openssl", "actix-http/openssl", "awc/openssl"]

[dependencies]
actix-codec = "0.5"
actix-http = "3.0.0-rc.4"
actix-http = "3.0.0"
actix-http-test = "3.0.0-beta.13"
actix-rt = "2.1"
actix-service = "2.0.0"
actix-utils = "3.0.0"
actix-web = { version = "4.0.0-rc.3", default-features = false, features = ["cookies"] }
actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
awc = { version = "3.0.0-beta.21", default-features = false, features = ["cookies"] }

futures-core = { version = "0.3.7", default-features = false, features = ["std"] }
Expand Down
4 changes: 2 additions & 2 deletions actix-web-actors/Cargo.toml
Expand Up @@ -16,8 +16,8 @@ path = "src/lib.rs"
[dependencies]
actix = { version = "0.12.0", default-features = false }
actix-codec = "0.5"
actix-http = "3.0.0-rc.4"
actix-web = { version = "4.0.0-rc.3", default-features = false }
actix-http = "3.0.0"
actix-web = { version = "4.0.0", default-features = false }

bytes = "1"
bytestring = "1"
Expand Down
9 changes: 9 additions & 0 deletions actix-web-codegen/CHANGES.md
Expand Up @@ -3,6 +3,15 @@
## Unreleased - 2021-xx-xx


## 4.0.0 - 2022-02-24
- Version aligned with `actix-web` and will remain in sync going forward.
- No significant changes since `0.5.0`.


## 0.5.0 - 2022-02-24
- No significant changes since `0.5.0-rc.2`.


## 0.5.0-rc.2 - 2022-02-01
- No significant changes since `0.5.0-rc.1`.

Expand Down
4 changes: 2 additions & 2 deletions actix-web-codegen/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "actix-web-codegen"
version = "0.5.0-rc.2"
version = "4.0.0"
description = "Routing and runtime macros for Actix Web"
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
Expand All @@ -25,7 +25,7 @@ actix-macros = "0.2.3"
actix-rt = "2.2"
actix-test = "0.1.0-beta.13"
actix-utils = "3.0.0"
actix-web = "4.0.0-rc.3"
actix-web = "4.0.0"

futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
trybuild = "1"
Expand Down
4 changes: 2 additions & 2 deletions actix-web-codegen/README.md
Expand Up @@ -3,11 +3,11 @@
> Routing and runtime macros for Actix Web.
[![crates.io](https://img.shields.io/crates/v/actix-web-codegen?label=latest)](https://crates.io/crates/actix-web-codegen)
[![Documentation](https://docs.rs/actix-web-codegen/badge.svg?version=0.5.0-rc.2)](https://docs.rs/actix-web-codegen/0.5.0-rc.2)
[![Documentation](https://docs.rs/actix-web-codegen/badge.svg?version=4.0.0)](https://docs.rs/actix-web-codegen/4.0.0)
[![Version](https://img.shields.io/badge/rustc-1.54+-ab6000.svg)](https://blog.rust-lang.org/2021/05/06/Rust-1.54.0.html)
![License](https://img.shields.io/crates/l/actix-web-codegen.svg)
<br />
[![dependency status](https://deps.rs/crate/actix-web-codegen/0.5.0-rc.2/status.svg)](https://deps.rs/crate/actix-web-codegen/0.5.0-rc.2)
[![dependency status](https://deps.rs/crate/actix-web-codegen/4.0.0/status.svg)](https://deps.rs/crate/actix-web-codegen/4.0.0)
[![Download](https://img.shields.io/crates/d/actix-web-codegen.svg)](https://crates.io/crates/actix-web-codegen)
[![Chat on Discord](https://img.shields.io/discord/771444961383153695?label=chat&logo=discord)](https://discord.gg/NWpN5mmg3x)

Expand Down

0 comments on commit d0c08db

Please sign in to comment.