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]