Skip to content

Commit ba20619

Browse files
committed
Version 1.9.1
1 parent e15ca46 commit ba20619

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
1-
Release $next
2-
=============
1+
2+
Release 1.9.1 (2018-04-09)
3+
==========================
4+
5+
* When decorating a function with @cache_region decorator the function generated to update the cached value
6+
will be named like the decorated function. So that during debugging it's easy to know which function is involved.
7+
* Removed usage of ``async`` as a variable in code, this fixes a compatibility problem with Python 3.7 where it's a keyword.
8+
* Fixed a race condition in ``FileNamespaceManager``.
9+
* ``ext.database`` backend will now properly close connections.
10+
* Do not leave bhind corrupted files if ``FileNamespaceManager`` is interrupted while writing a new file.
11+
Replacing content of a file or writing a new one is now always an atomic operation.
12+
* ``DBMNamespaceManager`` and ``FileSynchronizer`` will now deal with directories disappearing while they try to write to them.
13+
* The Redis and MongoDB backends are not exposed in documentation.
314

415
Release 1.9.0 (2017-06-19)
516
==========================

beaker/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.9.0'
1+
__version__ = '1.9.1'

setup.py

+4
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,10 @@
7272
'Programming Language :: Python :: 3.3',
7373
'Programming Language :: Python :: 3.4',
7474
'Programming Language :: Python :: 3.5',
75+
'Programming Language :: Python :: 3.6',
76+
'Programming Language :: Python :: 3.7',
77+
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
78+
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
7579
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
7680
'Topic :: Internet :: WWW/HTTP :: WSGI',
7781
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',

0 commit comments

Comments
 (0)