diff --git a/CHANGES.rst b/CHANGES.rst index 8f83c663..12efb236 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,17 @@ .. -*- coding: utf-8 -*- +0.3.22 +------ + +* Make ``Store.database_key`` field editable. + +* Add explicit session config within batch threads. + +* Remove cap on installed Pyramid version. + +* Change session progress API. + + 0.3.21 ------ diff --git a/setup.py b/setup.py index 8c84eb37..c5ea99af 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ requires = [ 'pyramid_exclog', # 0.6 'pyramid_simpleform', # 0.6.1 'pyramid_tm', # 0.3 - 'rattail[db]>=0.3.38', # 0.3.38 + 'rattail[db]>=0.3.40', # 0.3.40 'transaction', # 1.2.0 'waitress', # 0.8.1 'WebHelpers', # 1.3 diff --git a/tailbone/_version.py b/tailbone/_version.py index c0f83bb6..7331959f 100644 --- a/tailbone/_version.py +++ b/tailbone/_version.py @@ -1,3 +1,3 @@ # -*- coding: utf-8 -*- -__version__ = u'0.3.21' +__version__ = u'0.3.22'