diff --git a/CHANGES.rst b/CHANGES.rst index f2b0d4b..7e9a159 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -7,6 +7,12 @@ Changes ======= +Version v0.11.3 (release 2024-07-05) + +- setup: move to python3.12 only support +- services: increase timeout + + Version v0.11.2 (release 2024-04-23) - ext: init configuration diff --git a/invenio_alma/__init__.py b/invenio_alma/__init__.py index 10d374b..c17811d 100644 --- a/invenio_alma/__init__.py +++ b/invenio_alma/__init__.py @@ -10,6 +10,6 @@ from .ext import InvenioAlma from .services import AlmaRESTService, AlmaSRUService -__version__ = "0.11.2" +__version__ = "0.11.3" __all__ = ("__version__", "InvenioAlma", "AlmaSRUService", "AlmaRESTService")