From 33b09d78e99bc3f4e5a5f252e160fb28cc163d4a Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 2 Aug 2018 11:35:34 -0700 Subject: [PATCH] prepare release --- CHANGES.md | 5 +++++ Cargo.toml | 6 +++--- src/session.rs | 3 --- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index a0702c2ef..b38b1ba20 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changes +## 0.5.1 (2018-08-02) + +* USe cookie 0.11 + + ## 0.5.0 (2018-07-21) * Session cookie configuration diff --git a/Cargo.toml b/Cargo.toml index 94b81cf39..66ef46a31 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-redis" -version = "0.5.0" +version = "0.5.1" authors = ["Nikolay Kim "] description = "Redis integration for actix framework" license = "MIT/Apache-2.0" @@ -36,11 +36,11 @@ futures = "0.1" tokio-io = "0.1" tokio-codec = "0.1" tokio-tcp = "0.1" -redis-async = "0.3.2" +redis-async = "0.4" time = "0.1" # actix web session -actix-web = { version = "0.7", optional=true } +actix-web = { version = "^0.7.3", optional=true } cookie = { version="0.11", features=["percent-encode", "secure"], optional=true } http = { version="0.1", optional=true } rand = { version="0.5", optional=true } diff --git a/src/session.rs b/src/session.rs index 22a97feb6..8f067a276 100644 --- a/src/session.rs +++ b/src/session.rs @@ -65,9 +65,6 @@ impl SessionImpl for RedisSession { /// constructor of `RedisSessionBackend`. This is private key for cookie /// session, When this value is changed, all session data is lost. /// -/// Note that whatever you write into your session is visible by the user (but -/// not modifiable). -/// /// Constructor panics if key length is less than 32 bytes. pub struct RedisSessionBackend(Rc);