Skip to content

Commit ed4c255

Browse files
authored
Release 2.0.2 (#442)
* add py310 to action matrix * update changelog * inc version number
1 parent 580ee60 commit ed4c255

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
- {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39}
2727
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
2828
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
29+
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
2930
- {name: 'PyPy', python: pypy-3.7, os: ubuntu-latest, tox: pypy37}
3031
- {name: 'mypy', python: '3.9', os: ubuntu-latest, tox: typing}
3132
steps:

CHANGES.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ Changelog
44
Version 2.0.2
55
-------------
66

7+
Released 2023-01-12
8+
9+
- fix issue with boto3 dependencie due to latest cachelib released
710
- migrate ``flask_caching.backends.RedisCluster`` dependency from redis-py-cluster to redis-py
811
- bug fix: make the ``make_cache_key`` attributed of decorated view functions writeable. :pr:`431`, issue `#97`
912

src/flask_caching/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from flask_caching.utils import make_template_fragment_key # noqa: F401
3939
from flask_caching.utils import wants_args
4040

41-
__version__ = "2.0.1"
41+
__version__ = "2.0.2"
4242

4343
logger = logging.getLogger(__name__)
4444

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{39,38,37,py3}
3+
py{39,38,37,py3,310}
44
style
55
typing
66
docs

0 commit comments

Comments
 (0)