diff --git a/CHANGES.md b/CHANGES.md index d8a1632f0..55ffc6b6b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,16 @@ # Changes + +## 0.7.0 (2019-xx-xx) + +* Upgraded logic that evaluates session state, including new SessionStatus field, + and introduced ``session.renew()`` and ``session.purge()`` functionality. + Use ``renew()`` to cycle the session key at successful login. ``renew()`` keeps a + session's state while replacing the old cookie and session key with new ones. + Use ``purge()`` at logout to invalidate the session cookie and remove the + session's redis cache entry. + + ## 0.6.0 (2019-05-18) * actix-web 1.0.0 compatibility diff --git a/Cargo.toml b/Cargo.toml index b1c82a7d4..64b83b133 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "actix-redis" -version = "0.6.0" +version = "0.7.0" authors = ["Nikolay Kim "] description = "Redis integration for actix framework" license = "MIT/Apache-2.0"