diff --git a/actix-redis/CHANGES.md b/actix-redis/CHANGES.md index 343f11074..13bb71062 100644 --- a/actix-redis/CHANGES.md +++ b/actix-redis/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [0.8.2] 2020-05-17 + +* Pin `redis-async` version to use `tokio-util` 0.2 + ## [0.8.1] 2020-02-18 * Move `env_logger` dependency to dev-dependencies and update to 0.7 diff --git a/actix-redis/Cargo.toml b/actix-redis/Cargo.toml index cda5b7885..2abba3bbd 100644 --- a/actix-redis/Cargo.toml +++ b/actix-redis/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-redis" -version = "0.8.1" +version = "0.8.2" authors = ["Nikolay Kim "] description = "Redis integration for actix framework" license = "MIT/Apache-2.0" @@ -31,7 +31,7 @@ log = "0.4.6" backoff = "0.1.5" derive_more = "0.99.2" futures = "0.3.1" -redis-async = "0.6.1" +redis-async = "=0.6.2" actix-rt = "1.0.0" time = "0.1.42" tokio = "0.2.6"