diff --git a/CHANGES.rst b/CHANGES.rst index 5d191054..71c79aed 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Changes ======= +Version 5.2.4 (released 2024-02-27) + +- processors: updated file metadata extractor to handle multi-sequence images + Version 5.2.3 (released 2024-02-16) - schema: avoid mutating original data in pre_load diff --git a/invenio_records_resources/__init__.py b/invenio_records_resources/__init__.py index 13905742..10e3adb2 100644 --- a/invenio_records_resources/__init__.py +++ b/invenio_records_resources/__init__.py @@ -10,6 +10,6 @@ from .ext import InvenioRecordsResources -__version__ = "5.2.3" +__version__ = "5.2.4" __all__ = ("__version__", "InvenioRecordsResources") diff --git a/invenio_records_resources/services/files/processors/image.py b/invenio_records_resources/services/files/processors/image.py index d495bc63..fed56575 100644 --- a/invenio_records_resources/services/files/processors/image.py +++ b/invenio_records_resources/services/files/processors/image.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # # Invenio-Records-Resources is free software; you can redistribute it and/or # modify it under the terms of the MIT License; see LICENSE file for more