diff --git a/CHANGES b/CHANGES index bb555afa..aea35923 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,13 @@ Flask-Security-Invenio Changelog Here you can see the full list of changes between each Flask-Security-Invenio release. +Version 3.3.2 +------------- + +Released October 17th 2023 + +- Adds support for user impersonation. + Version 3.3.1 ------------- diff --git a/flask_security/__init__.py b/flask_security/__init__.py index fb796299..e5838ae5 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -37,7 +37,7 @@ reset_password_instructions_sent, user_confirmed, user_registered from .utils import impersonate_user, login_user, logout_user, url_for_security -__version__ = '3.3.1' +__version__ = '3.3.2' __all__ = ( 'AnonymousUser', 'auth_required',