From c7266e3ddd21f26ff71642c647f42203b76bdd69 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sat, 18 May 2019 11:24:26 -0700 Subject: [PATCH] prepare release --- CHANGES.md | 5 +++++ Cargo.toml | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a576f6e1b..d8a1632f0 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## 0.6.0 (2019-05-18) + +* actix-web 1.0.0 compatibility + + ## 0.5.1 (2018-08-02) * Use cookie 0.11 diff --git a/Cargo.toml b/Cargo.toml index b076f312e..b1c82a7d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-redis" -version = "0.6.0-beta.4" +version = "0.6.0" authors = ["Nikolay Kim "] description = "Redis integration for actix framework" license = "MIT/Apache-2.0" @@ -33,7 +33,7 @@ actix = "0.8.2" log = "0.4" backoff = "0.1" derive_more = "0.14" -futures = "0.1" +futures = "0.1.25" tokio-io = "0.1" tokio-codec = "0.1" tokio-tcp = "0.1" @@ -41,10 +41,10 @@ redis-async = "0.4" time = "0.1" # actix web session -actix-web = { version = "1.0.0-beta.5", optional=true } -actix-utils = { version = "0.4.0", optional=true } +actix-web = { version = "1.0.0-rc", optional=true } +actix-utils = { version = "0.4.1", optional=true } actix-service = { version = "0.4.0", optional=true } -actix-session = { version = "0.1.0-beta.4", optional=true } +actix-session = { version = "0.1.0", optional=true } rand = { version="0.6.5", optional=true } serde = { version="1.0", optional=true } serde_json = { version="1.0", optional=true }