diff --git a/CHANGES.rst b/CHANGES.rst index 79a359b1..4dc20b87 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Changes ======= +Version 3.4.1 (released 2023-10-14) + +- datastore: prevent autoflush on db + Version 3.4.0 (released 2023-08-30) - templates: refactor send confirmation template diff --git a/invenio_accounts/__init__.py b/invenio_accounts/__init__.py index e74183ca..4a8d4460 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__ = "3.4.0" +__version__ = "3.4.1" __all__ = ( "__version__",