diff --git a/CHANGES.rst b/CHANGES.rst index 2c2a84bc1..a494a0f43 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -12,6 +12,14 @@ Changes ======= +Version v15.7.1 (released 2024-11-06) + +- installation: bump babel-edtf to >=1.2.0 +- tests: fix EDTF interval with unknown start/end +- ui: use config instead of hardcoded url +- setup: forward compatibility to itsdangerous>=2.1 +- fix: DeprecationWarning of SQLAlchemy + Version v15.7.0 (released 2024-11-04) - resources: make record error handlers configurable diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index c45ae601c..64fe05b9c 100644 --- a/invenio_rdm_records/__init__.py +++ b/invenio_rdm_records/__init__.py @@ -3,6 +3,7 @@ # Copyright (C) 2019-2024 CERN. # Copyright (C) 2019-2024 Northwestern University. # Copyright (C) 2024 KTH Royal Institute of Technology. +# Copyright (C) 2024 Graz University of Technology. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify # it under the terms of the MIT License; see LICENSE file for more details. @@ -11,6 +12,6 @@ from .ext import InvenioRDMRecords -__version__ = "15.7.0" +__version__ = "15.7.1" __all__ = ("__version__", "InvenioRDMRecords")