Skip to content

Commit 2da08c6

Browse files
committed
Flask-Caching 1.7.1 -> 1.7.2
1 parent 616e466 commit 2da08c6

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGES

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
Changelog
22
---------
3-
Version 1.7.1 2019-04-16
3+
Version 1.7.2 2019-05-28
44
````````````````````````
55

66
**This is the last version supporting Python 2!**
77

8+
- Do not run a cached/memoized function if the cached return value is None.
9+
PR `#108 <https://github.com/sh4nks/flask-caching/pull/108>`_.
10+
11+
12+
Version 1.7.1 2019-04-16
13+
````````````````````````
14+
815
- Fix introspecting Python 3 functions by using varkw.
916
PR `#101 <https://github.com/sh4nks/flask-caching/pull/101>`_.
1017
- Remove leftover files (``uwsgi.py``) in PyPI package. See issue
@@ -14,8 +21,6 @@ Version 1.7.1 2019-04-16
1421
Version 1.7.0 2019-03-29
1522
````````````````````````
1623

17-
**This is the last version supporting Python 2!**
18-
1924
- Added a feature called 'response_filter' which enables one to only
2025
cache views depending on the response code.
2126
PR `#99 <https://github.com/sh4nks/flask-caching/pull/99>`_.

flask_caching/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
from flask_caching._compat import PY2, iteritems
2525

26-
__version__ = "1.7.1"
26+
__version__ = "1.7.2"
2727

2828
logger = logging.getLogger(__name__)
2929

0 commit comments

Comments
 (0)