diff --git a/CHANGES.md b/CHANGES.md index 3f95d672..c5b0068d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,7 +4,7 @@ Flask-Login Changelog Version 0.6.2 ------------- -Unreleased +Released on July 25th, 2022 - Fix compatibility with Werkzeug 2.2 and Flask 2.2. #691 - Revert change to `expand_login_view` that attempted to preserve a diff --git a/src/flask_login/__about__.py b/src/flask_login/__about__.py index 11dd7b79..1eb28262 100644 --- a/src/flask_login/__about__.py +++ b/src/flask_login/__about__.py @@ -1,7 +1,7 @@ __title__ = "Flask-Login" __description__ = "User session management for Flask" __url__ = "https://github.com/maxcountryman/flask-login" -__version_info__ = ("0", "6", "1") +__version_info__ = ("0", "6", "2") __version__ = ".".join(__version_info__) __author__ = "Matthew Frazier" __author_email__ = "leafstormrush@gmail.com"