From c7477199487b2c8465abb3f7e6a07fd11f4fb4de Mon Sep 17 00:00:00 2001 From: Brock Elmore Date: Fri, 5 Nov 2021 09:48:04 -0400 Subject: [PATCH] Bump all actix-codec versions, add pr info --- actix-test/Cargo.toml | 2 +- actix-web-actors/Cargo.toml | 2 +- awc/CHANGES.md | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/actix-test/Cargo.toml b/actix-test/Cargo.toml index 002e7662e..5cf4d80e3 100644 --- a/actix-test/Cargo.toml +++ b/actix-test/Cargo.toml @@ -28,7 +28,7 @@ rustls = ["tls-rustls", "actix-http/rustls", "awc/rustls"] openssl = ["tls-openssl", "actix-http/openssl", "awc/openssl"] [dependencies] -actix-codec = "0.4.0" +actix-codec = "0.4.1" actix-http = "3.0.0-beta.11" actix-http-test = "3.0.0-beta.5" actix-service = "2.0.0" diff --git a/actix-web-actors/Cargo.toml b/actix-web-actors/Cargo.toml index 2d987a131..4d2e5819a 100644 --- a/actix-web-actors/Cargo.toml +++ b/actix-web-actors/Cargo.toml @@ -15,7 +15,7 @@ path = "src/lib.rs" [dependencies] actix = { version = "0.12.0", default-features = false } -actix-codec = "0.4.0" +actix-codec = "0.4.1" actix-http = "3.0.0-beta.11" actix-web = { version = "4.0.0-beta.10", default-features = false } diff --git a/awc/CHANGES.md b/awc/CHANGES.md index 5682a237c..98a109a33 100644 --- a/awc/CHANGES.md +++ b/awc/CHANGES.md @@ -1,7 +1,9 @@ # Changes ## Unreleased - 2021-xx-xx - +* Reexport ConnectionIo +* Bump `actix-codec` version to 0.4.1 +[#2436]: https://github.com/actix/actix-web/pull/2436 ## 3.0.0-beta.9 - 2021-10-20 * Updated rustls to v0.20. [#2414]