From 42f51eb962af48b85b944fe64d24f4a81ad4650e Mon Sep 17 00:00:00 2001
From: Rob Ede
Date: Fri, 30 Oct 2020 03:15:22 +0000
Subject: [PATCH] prepare web release 3.2.0
---
CHANGES.md | 4 ++++
Cargo.toml | 10 +++++-----
README.md | 6 ++++--
awc/CHANGES.md | 2 +-
4 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/CHANGES.md b/CHANGES.md
index 15d44b75c..cc41f839b 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,9 @@
# Changes
## Unreleased - 2020-xx-xx
+
+
+## 3.2.0 - 2020-10-30
### Added
* Implement `exclude_regex` for Logger middleware. [#1723]
* Add request-local data extractor `web::ReqData`. [#1748]
@@ -9,6 +12,7 @@
* Expose `on_connect` for access to the connection stream before request is handled. [#1754]
### Changed
+* Updated actix-web-codegen dependency for access to new `#[route(...)]` multi-method macro.
* Print non-configured `Data` type when attempting extraction. [#1743]
* Re-export bytes::Buf{Mut} in web module. [#1750]
* Upgrade `pin-project` to `1.0`.
diff --git a/Cargo.toml b/Cargo.toml
index 4fafc61c4..33ec52fae 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,8 +1,8 @@
[package]
name = "actix-web"
-version = "3.1.0"
+version = "3.2.0"
authors = ["Nikolay Kim "]
-description = "Actix web is a powerful, pragmatic, and extremely fast web framework for Rust."
+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"
@@ -84,8 +84,8 @@ actix-macros = "0.1.0"
actix-threadpool = "0.3.1"
actix-tls = "2.0.0"
-actix-web-codegen = "0.3.0"
-actix-http = "2.0.0"
+actix-web-codegen = "0.4.0"
+actix-http = "2.1.0"
awc = { version = "2.0.0", default-features = false }
bytes = "0.5.3"
@@ -111,7 +111,7 @@ tinyvec = { version = "1", features = ["alloc"] }
[dev-dependencies]
actix = "0.10.0"
-actix-http = { version = "2.0.0", features = ["actors"] }
+actix-http = { version = "2.1.0", features = ["actors"] }
rand = "0.7"
env_logger = "0.8"
serde_derive = "1.0"
diff --git a/README.md b/README.md
index 3e3ce8bf1..4a0dae4f8 100644
--- a/README.md
+++ b/README.md
@@ -5,15 +5,17 @@
-[](https://crates.io/crates/actix-web)
-[](https://docs.rs/actix-web)
+[](https://crates.io/crates/actix-web)
+[](https://docs.rs/actix-web/3.2.0)
[](https://blog.rust-lang.org/2020/03/12/Rust-1.42.html)

+[](https://deps.rs/crate/actix-web/2.2.0)
[](https://travis-ci.org/actix/actix-web)
[](https://codecov.io/gh/actix/actix-web)
[](https://crates.io/crates/actix-web)
[](https://gitter.im/actix/actix?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
+[](https://discord.gg/NWpN5mmg3x)
diff --git a/awc/CHANGES.md b/awc/CHANGES.md
index a5090e7c9..5e87362f0 100644
--- a/awc/CHANGES.md
+++ b/awc/CHANGES.md
@@ -3,7 +3,7 @@
## Unreleased - 2020-xx-xx
-## 2.0.1 - 2020-xx-xx
+## 2.0.1 - 2020-10-30
### Changed
* Upgrade `base64` to `0.13`. [#1744]
* Deprecate `ClientRequest::{if_some, if_true}`. [#1760]