diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2e2bb95..9ca6849 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,12 @@ Changelog ------------- nothing yet +`6.0.0`_ (2022-04-05) +--------------------- +* Added support for Flask 2.1 and Werkzeug 2.1 +* Minimum supported version of Flask is now 2.0.3 +* Codebase is now linted using `isort`_ + `5.1.0`_ (2021-11-01) --------------------- * Added Fitbit pre-set configuration @@ -369,9 +375,11 @@ Fixed .. _#143: https://github.com/singingwolfboy/flask-dance/issues/143 .. _#144: https://github.com/singingwolfboy/flask-dance/issues/144 .. _#161: https://github.com/singingwolfboy/flask-dance/issues/161 +.. _isort: https://pycqa.github.io/isort/ -.. _unreleased: https://github.com/singingwolfboy/flask-dance/compare/v5.1.0...HEAD +.. _unreleased: https://github.com/singingwolfboy/flask-dance/compare/v6.0.0...HEAD +.. _6.0.0: https://github.com/singingwolfboy/flask-dance/compare/v5.1.0...v6.0.0 .. _5.1.0: https://github.com/singingwolfboy/flask-dance/compare/v5.0.0...v5.1.0 .. _5.0.0: https://github.com/singingwolfboy/flask-dance/compare/v4.0.0...v5.0.0 .. _4.0.0: https://github.com/singingwolfboy/flask-dance/compare/v3.3.1...v4.0.0 diff --git a/flask_dance/__init__.py b/flask_dance/__init__.py index e2242fe..e9d13af 100644 --- a/flask_dance/__init__.py +++ b/flask_dance/__init__.py @@ -1,3 +1,3 @@ from .consumer import OAuth1ConsumerBlueprint, OAuth2ConsumerBlueprint -__version__ = "5.1.0" +__version__ = "6.0.0" diff --git a/setup.py b/setup.py index b0be1d4..5370d8d 100644 --- a/setup.py +++ b/setup.py @@ -71,10 +71,10 @@ def get_requirements(path): "Framework :: Pytest", "Programming Language :: Python", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", ], zip_safe=False, )