From 35742036f35fd8450dd7ace791feef8081971830 Mon Sep 17 00:00:00 2001 From: Pablo Tamarit Date: Tue, 8 Oct 2024 14:23:58 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v2.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/tests.yml | 2 +- CHANGES.rst | 5 +++++ invenio_records/__init__.py | 2 +- invenio_records/systemfields/relations/results.py | 2 +- invenio_records/validators.py | 2 +- tests/test_relations_systemfield.py | 2 +- 6 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d3ea504c..bbcb66ff 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2020 CERN. +# Copyright (C) 2020-2024 CERN. # Copyright (C) 2022 Graz University of Technology. # # Invenio is free software; you can redistribute it and/or modify it diff --git a/CHANGES.rst b/CHANGES.rst index 3847df6e..09240b53 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,11 @@ Changes ======= +Version v2.4.0 (released 2024-10-08) + +- relation: modified lookup_data for nested fields +- Adds translations + Version 2.3.0 (released 2024-02-19) - tests: add tests for filter_dict_keys diff --git a/invenio_records/__init__.py b/invenio_records/__init__.py index c78818f3..e031a19f 100644 --- a/invenio_records/__init__.py +++ b/invenio_records/__init__.py @@ -331,7 +331,7 @@ from .api import Record from .ext import InvenioRecords -__version__ = "2.3.0" +__version__ = "2.4.0" __all__ = ( "InvenioRecords", diff --git a/invenio_records/systemfields/relations/results.py b/invenio_records/systemfields/relations/results.py index 36fc9903..9d21ff14 100644 --- a/invenio_records/systemfields/relations/results.py +++ b/invenio_records/systemfields/relations/results.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2020-2021 CERN. +# Copyright (C) 2020-2024 CERN. # # Invenio 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_records/validators.py b/invenio_records/validators.py index d38bd296..ef802dec 100644 --- a/invenio_records/validators.py +++ b/invenio_records/validators.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2015-2018 CERN. +# Copyright (C) 2015-2024 CERN. # Copyright (C) 2021 TU Wien. # # Invenio is free software; you can redistribute it and/or modify it diff --git a/tests/test_relations_systemfield.py b/tests/test_relations_systemfield.py index e90656b1..03800ee4 100644 --- a/tests/test_relations_systemfield.py +++ b/tests/test_relations_systemfield.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2020 CERN. +# Copyright (C) 2020-2024 CERN. # # Invenio is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details.