From 4b522cf488d355690b36a5d5eda02b34d6e80d5f Mon Sep 17 00:00:00 2001 From: Gabriel Fioravante Date: Sun, 26 Jun 2022 18:24:05 -0300 Subject: [PATCH] release 2.0.0 (#374) --- CHANGES.rst | 8 ++++---- src/flask_caching/__init__.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index a4356123..1d35c08b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,11 +4,11 @@ Changelog Version 2.0.0 ------------- -Released 2022-05-29 +Released 2022-06-26 -- fix bug where ``flask_caching.backends.RedisSentinelCache.get_many`` would query wrong host&port combination. -- ``flask_caching.backends.FileSystemCache`` internal implementations have been removed. It now shares 100% of ``cachelib.FileSystemCache`` API and is fully compatible. -- Add proxy to underlaying ``has`` method of cache clients +- fix bug where ``flask_caching.backends.RedisSentinelCache.get_many`` would query wrong host&port combination. :pr:`372` +- ``flask_caching.backends.FileSystemCache`` internal implementations have been removed. It now shares 100% of ``cachelib.FileSystemCache`` API and is fully compatible. :pr:`369` +- Add proxy to underlaying ``has`` method of cache clients. :pr:`356` Version 1.11.1 diff --git a/src/flask_caching/__init__.py b/src/flask_caching/__init__.py index 2299cc87..4e25061c 100644 --- a/src/flask_caching/__init__.py +++ b/src/flask_caching/__init__.py @@ -38,7 +38,7 @@ from flask_caching.utils import make_template_fragment_key # noqa: F401 from flask_caching.utils import wants_args -__version__ = "1.11.1" +__version__ = "2.0.0" logger = logging.getLogger(__name__)