diff --git a/CHANGES.rst b/CHANGES.rst index 3a578a02e..f18230f28 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -11,6 +11,10 @@ Changes ======= +Version v12.0.4 (released 2024-08-28) + +- stats: add missing "is_machine" field + Version v12.0.3 (released 2024-08-27) - add permissions checks for community submission policy diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index 735884513..576aa2548 100644 --- a/invenio_rdm_records/__init__.py +++ b/invenio_rdm_records/__init__.py @@ -10,6 +10,6 @@ from .ext import InvenioRDMRecords -__version__ = "12.0.3" +__version__ = "12.0.4" __all__ = ("__version__", "InvenioRDMRecords") diff --git a/invenio_rdm_records/services/errors.py b/invenio_rdm_records/services/errors.py index 1aa24fdf5..024ab39ee 100644 --- a/invenio_rdm_records/services/errors.py +++ b/invenio_rdm_records/services/errors.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # Copyright (C) 2023 Graz University of Technology. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify diff --git a/tests/resources/test_resources_review.py b/tests/resources/test_resources_review.py index da70b6fc6..9055e3926 100644 --- a/tests/resources/test_resources_review.py +++ b/tests/resources/test_resources_review.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2021 CERN. +# Copyright (C) 2021-2024 CERN. # # 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.