From 345abfc2d3bf4af0be898a1b4ee1fe45edd16053 Mon Sep 17 00:00:00 2001 From: Pablo Tamarit Date: Mon, 18 Mar 2024 12:45:50 +0100 Subject: [PATCH] release: v5.0.1 --- CHANGES.rst | 4 ++++ invenio_accounts/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 781bcc7a..b05a0415 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Changes ======= +Version 5.0.1 (released 2024-03-22) + +- models: fix username case-insensitive comparator + Version 5.0.0 (released 2024-03-21) - fix: before_first_request deprecation diff --git a/invenio_accounts/__init__.py b/invenio_accounts/__init__.py index 4df8a5fa..8f79ac1c 100644 --- a/invenio_accounts/__init__.py +++ b/invenio_accounts/__init__.py @@ -54,7 +54,7 @@ from .ext import InvenioAccounts, InvenioAccountsREST, InvenioAccountsUI from .proxies import current_accounts -__version__ = "5.0.0" +__version__ = "5.0.1" __all__ = ( "__version__",