Skip to content

Commit 0b5b463

Browse files
committed
prepare web and awc releases
closes #1799
1 parent fe6ad81 commit 0b5b463

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "actix-web"
3-
version = "3.3.0"
3+
version = "3.3.1"
44
authors = ["Nikolay Kim <[email protected]>"]
5-
description = "Actix web is a powerful, pragmatic, and extremely fast web framework for Rust"
5+
description = "Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust"
66
readme = "README.md"
77
keywords = ["actix", "http", "web", "framework", "async"]
88
homepage = "https://actix.rs"
@@ -85,11 +85,11 @@ actix-threadpool = "0.3.1"
8585
actix-tls = "2.0.0"
8686

8787
actix-web-codegen = "0.4.0"
88-
actix-http = "2.1.0"
89-
awc = { version = "2.0.0", default-features = false }
88+
actix-http = "2.2.0"
89+
awc = { version = "2.0.3", default-features = false }
9090

9191
bytes = "0.5.3"
92-
derive_more = "0.99.2"
92+
derive_more = "0.99.5"
9393
encoding_rs = "0.8"
9494
futures-channel = { version = "0.3.5", default-features = false }
9595
futures-core = { version = "0.3.5", default-features = false }

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<div align="center">
22
<h1>Actix web</h1>
33
<p>
4-
<strong>Actix web is a powerful, pragmatic, and extremely fast web framework for Rust</strong>
4+
<strong>Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust</strong>
55
</p>
66
<p>
77

88
[![crates.io](https://img.shields.io/crates/v/actix-web?label=latest)](https://crates.io/crates/actix-web)
9-
[![Documentation](https://docs.rs/actix-web/badge.svg?version=3.3.0)](https://docs.rs/actix-web/3.3.0)
9+
[![Documentation](https://docs.rs/actix-web/badge.svg?version=3.3.1)](https://docs.rs/actix-web/3.3.1)
1010
[![Version](https://img.shields.io/badge/rustc-1.42+-ab6000.svg)](https://blog.rust-lang.org/2020/03/12/Rust-1.42.html)
1111
![License](https://img.shields.io/crates/l/actix-web.svg)
12-
[![Dependency Status](https://deps.rs/crate/actix-web/3.3.0/status.svg)](https://deps.rs/crate/actix-web/3.3.0)
12+
[![Dependency Status](https://deps.rs/crate/actix-web/3.3.1/status.svg)](https://deps.rs/crate/actix-web/3.3.1)
1313
<br />
1414
[![Build Status](https://travis-ci.org/actix/actix-web.svg?branch=master)](https://travis-ci.org/actix/actix-web)
1515
[![codecov](https://codecov.io/gh/actix/actix-web/branch/master/graph/badge.svg)](https://codecov.io/gh/actix/actix-web)

awc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "awc"
3-
version = "2.0.2"
3+
version = "2.0.3"
44
authors = ["Nikolay Kim <[email protected]>"]
55
description = "Async HTTP and WebSocket client library built on the Actix ecosystem"
66
readme = "README.md"
@@ -39,7 +39,7 @@ compress = ["actix-http/compress"]
3939
[dependencies]
4040
actix-codec = "0.3.0"
4141
actix-service = "1.0.6"
42-
actix-http = "2.0.0"
42+
actix-http = "2.2.0"
4343
actix-rt = "1.0.0"
4444

4545
base64 = "0.13"

awc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
> Async HTTP and WebSocket client library.
44
55
[![crates.io](https://img.shields.io/crates/v/awc?label=latest)](https://crates.io/crates/awc)
6-
[![Documentation](https://docs.rs/awc/badge.svg?version=2.0.2)](https://docs.rs/awc/2.0.2)
6+
[![Documentation](https://docs.rs/awc/badge.svg?version=2.0.3)](https://docs.rs/awc/2.0.3)
77
![Apache 2.0 or MIT licensed](https://img.shields.io/crates/l/awc)
8-
[![Dependency Status](https://deps.rs/crate/awc/2.0.2/status.svg)](https://deps.rs/crate/awc/2.0.2)
8+
[![Dependency Status](https://deps.rs/crate/awc/2.0.3/status.svg)](https://deps.rs/crate/awc/2.0.3)
99
[![Join the chat at https://gitter.im/actix/actix-web](https://badges.gitter.im/actix/actix-web.svg)](https://gitter.im/actix/actix-web?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1010

1111
## Documentation & Resources

docs/graphs/web-focus.dot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ digraph {
1717
"multipart" -> { "web" "service" "utils" }
1818
"http" -> { "service" "codec" "connect" "utils" "rt" "threadpool" }
1919
"http" -> { "actix" "tls" }[color=blue] // optional
20-
"files" -> { "web" "http" }
20+
"files" -> { "web" }
2121
"http-test" -> { "service" "codec" "connect" "utils" "rt" "server" "testing" "awc" }
2222

2323
// net

docs/graphs/web-only.dot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ digraph {
1111
"actix-http-test"
1212
}
1313

14-
"actix-web" -> { "actix-web-codegen" "actix-http" "awc" }
14+
"actix-web" -> { "actix-web-codegen" "actix-http" "awc" }
1515
"awc" -> { "actix-http" }
1616
"actix-web-actors" -> { "actix" "actix-web" "actix-http" }
1717
"actix-multipart" -> { "actix-web" }
1818
"actix-http" -> { "actix" }[color=blue] // optional
19-
"actix-files" -> { "actix-web" "actix-http" }
19+
"actix-files" -> { "actix-web" }
2020
"actix-http-test" -> { "awc" }
2121
}

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! Actix web is a powerful, pragmatic, and extremely fast web framework for Rust.
1+
//! Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
22
//!
33
//! ## Example
44
//!

0 commit comments

Comments
 (0)