Skip to content

Commit

Permalink
Release 2.0.2 (#442)
Browse files Browse the repository at this point in the history
* add py310 to action matrix

* update changelog

* inc version number
  • Loading branch information
northernSage committed Jan 12, 2023
1 parent 580ee60 commit ed4c255
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Expand Up @@ -26,6 +26,7 @@ jobs:
- {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39}
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
- {name: 'PyPy', python: pypy-3.7, os: ubuntu-latest, tox: pypy37}
- {name: 'mypy', python: '3.9', os: ubuntu-latest, tox: typing}
steps:
Expand Down
3 changes: 3 additions & 0 deletions CHANGES.rst
Expand Up @@ -4,6 +4,9 @@ Changelog
Version 2.0.2
-------------

Released 2023-01-12

- fix issue with boto3 dependencie due to latest cachelib released
- migrate ``flask_caching.backends.RedisCluster`` dependency from redis-py-cluster to redis-py
- bug fix: make the ``make_cache_key`` attributed of decorated view functions writeable. :pr:`431`, issue `#97`

Expand Down
2 changes: 1 addition & 1 deletion src/flask_caching/__init__.py
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__ = "2.0.1"
__version__ = "2.0.2"

logger = logging.getLogger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py{39,38,37,py3}
py{39,38,37,py3,310}
style
typing
docs
Expand Down

0 comments on commit ed4c255

Please sign in to comment.