diff --git a/CHANGELOG b/CHANGELOG index 2faac949..7810f2a4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,13 @@ +Release 1.10.1 (2019-02-21) +=========================== + +* Fix issue with Redis namespace manager TTL +* Fix for SameSite cookie option not being set in some cases +* Fix for memcached tests on Python3 + Release 1.10.0 (2018-06-04) -========================== +=========================== * Redis namespace manager now supports providing a TTL for session entries that had a ``timeout`` provided. This will remove the need to manually clear expired sessions from the redis storage. diff --git a/beaker/__init__.py b/beaker/__init__.py index 52af183e..ff987d28 100644 --- a/beaker/__init__.py +++ b/beaker/__init__.py @@ -1 +1 @@ -__version__ = '1.10.0' +__version__ = '1.10.1'