From 7ff8fdc79b9c9d3574b6714217cb3e314725fa04 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Mon, 18 Nov 2024 22:28:20 +0100 Subject: [PATCH] release: v3.4.0 --- CHANGES | 11 +++++++++++ flask_security/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 9dc64b1c..868e64fc 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,17 @@ Flask-Security-Invenio Changelog Here you can see the full list of changes between each Flask-Security-Invenio release. +Version 3.4.0 +------------- + +Released November 19th 2024 + +- i18n-global: add compile-catalog fuzzy +- setup: remove flask upper pin +- fix: LegacyAPIWarning +- tests: move to reusable workflows + + Version 3.3.3 ------------- diff --git a/flask_security/__init__.py b/flask_security/__init__.py index fb70d3a8..38e7a01c 100644 --- a/flask_security/__init__.py +++ b/flask_security/__init__.py @@ -49,7 +49,7 @@ ) from .utils import impersonate_user, login_user, logout_user, url_for_security -__version__ = "3.3.3" +__version__ = "3.4.0" __all__ = ( "AnonymousUser", "auth_required",