From 1b18da4a2210da64e926383cac07e8afee29e958 Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Fri, 29 Nov 2024 15:56:33 +0100 Subject: [PATCH] release: v5.1.7 (fixed Python verion) * The `__version__` variable was not updated to 5.1.7. --- invenio_accounts/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/invenio_accounts/__init__.py b/invenio_accounts/__init__.py index 3fb2c006..3293cf6f 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.5" +__version__ = "5.1.7" __all__ = ( "__version__",