From a5618a3ef788d69325ac94432de434776fd910fa Mon Sep 17 00:00:00 2001 From: Pablo Tamarit Date: Fri, 21 Feb 2025 13:03:23 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v17.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 5 +++++ invenio_rdm_records/__init__.py | 2 +- invenio_rdm_records/resources/serializers/__init__.py | 2 +- .../resources/serializers/signposting/__init__.py | 2 +- .../resources/serializers/signposting/schema.py | 2 +- tests/resources/serializers/test_signposting_serializer.py | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 789e62ef6..8fa63b5e6 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -12,6 +12,11 @@ Changes ======= +Version v17.1.0 (released 2025-02-21) + +- views: FAIR signposting level 1 support +- views: FAIR signposting remove linkset link to itself + Version v17.0.2 (released 2025-02-14) - serializers/dcat: fix broken subject serialization for terms with apostrophes diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index 046dafae2..e3368bc68 100644 --- a/invenio_rdm_records/__init__.py +++ b/invenio_rdm_records/__init__.py @@ -12,6 +12,6 @@ from .ext import InvenioRDMRecords -__version__ = "17.0.2" +__version__ = "17.1.0" __all__ = ("__version__", "InvenioRDMRecords") diff --git a/invenio_rdm_records/resources/serializers/__init__.py b/invenio_rdm_records/resources/serializers/__init__.py index d970d7b71..f3ddd20ff 100644 --- a/invenio_rdm_records/resources/serializers/__init__.py +++ b/invenio_rdm_records/resources/serializers/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2020-2024 CERN. +# Copyright (C) 2020-2025 CERN. # Copyright (C) 2020 Northwestern University. # Copyright (C) 2021 Graz University of Technology. # diff --git a/invenio_rdm_records/resources/serializers/signposting/__init__.py b/invenio_rdm_records/resources/serializers/signposting/__init__.py index 4da64a350..d597ca338 100644 --- a/invenio_rdm_records/resources/serializers/signposting/__init__.py +++ b/invenio_rdm_records/resources/serializers/signposting/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2023 Northwestern University. -# Copyright (C) 2024 CERN. +# Copyright (C) 2024-2025 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. diff --git a/invenio_rdm_records/resources/serializers/signposting/schema.py b/invenio_rdm_records/resources/serializers/signposting/schema.py index 65bc345c2..57f127ee5 100644 --- a/invenio_rdm_records/resources/serializers/signposting/schema.py +++ b/invenio_rdm_records/resources/serializers/signposting/schema.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2023 Northwestern University. -# Copyright (C) 2024 CERN. +# Copyright (C) 2024-2025 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. diff --git a/tests/resources/serializers/test_signposting_serializer.py b/tests/resources/serializers/test_signposting_serializer.py index 01557a7f6..2a79ce0c0 100644 --- a/tests/resources/serializers/test_signposting_serializer.py +++ b/tests/resources/serializers/test_signposting_serializer.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2023 Northwestern University. -# Copyright (C) 2024 CERN. +# Copyright (C) 2024-2025 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.