1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-01-22 23:05:56 +01:00

updated version to 0.7 and added comments to CHANGES.md

This commit is contained in:
dowwie 2019-07-04 06:10:03 -04:00
parent 48ddb76915
commit 1d1ff66063
2 changed files with 12 additions and 1 deletions

View File

@ -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

View File

@ -1,6 +1,6 @@
[package]
name = "actix-redis"
version = "0.6.0"
version = "0.7.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Redis integration for actix framework"
license = "MIT/Apache-2.0"