diff --git a/CHANGES.rst b/CHANGES.rst index 56b67315..445077f8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Changes ======= +Version v5.1.5 (released 2024-11-05) + +- model: make forward compatible to sqlalchemy >= 2 + Version v5.1.4 (released 2024-11-04) - UI: fix spacing on password reset form diff --git a/invenio_accounts/__init__.py b/invenio_accounts/__init__.py index f3200945..3fb2c006 100644 --- a/invenio_accounts/__init__.py +++ b/invenio_accounts/__init__.py @@ -55,7 +55,7 @@ from .ext import InvenioAccounts, InvenioAccountsREST, InvenioAccountsUI from .proxies import current_accounts -__version__ = "5.1.4" +__version__ = "5.1.5" __all__ = ( "__version__",