diff --git a/CHANGES b/CHANGES index 9326e1a..9e2f57e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,8 @@ -2.1.0 - - Drop Python 2.x and Python 3.6 support. +2.1.0 (2023-10-22) + - Drop Python 2.x support. - Migrate from nose to pytest. - Migrate from Travis to GitHub Actions. - - Test against Python 3.7 - 3.12. + - Test against Python 3.8 - 3.12. - Fix compatibility with Flask 2.0 and 3.0. 2.0 (2019-12-20) diff --git a/src/flask_assets.py b/src/flask_assets.py index 4bfec70..8db9ff1 100644 --- a/src/flask_assets.py +++ b/src/flask_assets.py @@ -20,7 +20,7 @@ from webassets.filter import Filter, register_filter from webassets.loaders import PythonLoader, YAMLLoader -__version__ = (2, 0) +__version__ = (2, 1, 0) # webassets core compatibility used in setup.py __webassets_version__ = ('>=2.0', ) diff --git a/tox.ini b/tox.ini index 102dee1..01fd422 100644 --- a/tox.ini +++ b/tox.ini @@ -4,14 +4,11 @@ skip_missing_interpreters = true [gh-actions] python = - 3.7: py37 - 3.8: py38 + 3.8: py38, flask1 3.9: py39 - 3.10: py310 + 3.10: py310, flask2 3.11: py311 3.12: py312 - flask1: py38 - flask2: py310 [testenv] deps =