diff --git a/actix-codec/CHANGES.md b/actix-codec/CHANGES.md index 2a4a00e2..8f492a3b 100644 --- a/actix-codec/CHANGES.md +++ b/actix-codec/CHANGES.md @@ -3,6 +3,10 @@ ## Unreleased - 2021-xx-xx +## 0.4.2 - 2021-12-31 +- No significant changes since `0.4.1`. + + ## 0.4.1 - 2021-11-05 - Added `LinesCodec.` [#338] - `Framed::poll_ready` flushes when the buffer is full. [#409] diff --git a/actix-codec/Cargo.toml b/actix-codec/Cargo.toml index b6a9d298..d9920c7d 100644 --- a/actix-codec/Cargo.toml +++ b/actix-codec/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-codec" -version = "0.4.1" +version = "0.4.2" authors = [ "Nikolay Kim ", "Rob Ede ", @@ -24,7 +24,7 @@ futures-sink = { version = "0.3.7", default-features = false } log = "0.4" memchr = "2.3" pin-project-lite = "0.2" -tokio = "1.5.1" +tokio = "1.13.1" tokio-util = { version = "0.6", features = ["codec", "io"] } [dev-dependencies] diff --git a/actix-server/Cargo.toml b/actix-server/Cargo.toml index 7c53cf52..5d75da01 100755 --- a/actix-server/Cargo.toml +++ b/actix-server/Cargo.toml @@ -40,7 +40,7 @@ tokio = { version = "1.5.1", features = ["sync"] } tokio-uring = { version = "0.1", optional = true } [dev-dependencies] -actix-codec = "0.4.0" +actix-codec = "0.4.2" actix-rt = "2.4.0" bytes = "1" diff --git a/actix-tls/Cargo.toml b/actix-tls/Cargo.toml index 0299c45b..2f1bcf00 100755 --- a/actix-tls/Cargo.toml +++ b/actix-tls/Cargo.toml @@ -42,7 +42,7 @@ native-tls = ["tokio-native-tls"] uri = ["http"] [dependencies] -actix-codec = "0.4.0" +actix-codec = "0.4.2" actix-rt = { version = "2.2.0", default-features = false } actix-service = "2.0.0" actix-utils = "3.0.0"