Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
Changelog
=========


Version 1.11.0
--------------

Unreleased
Released 2022-05-27

- Add suport for cached/memoized generators. PR `#286 <https://github.com/pallets-eco/flask-caching/pull/286>`_.
- Add support for Flask 2.0 async. PR `#282 <https://github.com/pallets-eco/flask-caching/pull/282>`_.
- Cachelib is now used as backend. PR `#308 <https://github.com/pallets-eco/flask-caching/pull/308>`_.
- Drop support for python 3.6. PR `#332 <https://github.com/pallets-eco/flask-caching/pull/332>`_.
- Add support for dynamic cache timeouts `#296 <https://github.com/pallets-eco/flask-caching/pull/296>`_.
- Fix bug `#343 <https://github.com/pallets-eco/flask-caching/issues/343>`_ in CACHE_OPTIONS reading for radis in RedisSentinelCache
- Fix bug in ``CACHE_OPTIONS`` reading for redis in ``RedisSentinelCache``. PR `#343 <https://github.com/pallets-eco/flask-caching/issues/343>`_.


Version 1.10.1
--------------
Expand Down
2 changes: 1 addition & 1 deletion src/flask_caching/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from flask_caching.utils import make_template_fragment_key # noqa: F401
from flask_caching.utils import wants_args

__version__ = "1.10.1"
__version__ = "1.11.0"

logger = logging.getLogger(__name__)

Expand Down