diff --git a/CHANGES.rst b/CHANGES.rst index 974a90f8..2846c523 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -4,7 +4,9 @@ Changelog Version 2.2.0 ------------- -- Drop py37 support +- Drop python 3.7 support +- python 3.11 officially supported +- Fix issue causing `args_to_ignore` to not work with `flask_caching.Cache.memoize` decorator when keyword arguments were used in the decorated function call Version 2.1.0 diff --git a/src/flask_caching/__init__.py b/src/flask_caching/__init__.py index 03e9dc1e..f4c459c6 100644 --- a/src/flask_caching/__init__.py +++ b/src/flask_caching/__init__.py @@ -40,7 +40,7 @@ from flask_caching.utils import make_template_fragment_key # noqa: F401 from flask_caching.utils import wants_args -__version__ = "2.1.0" +__version__ = "2.2.0" logger = logging.getLogger(__name__)