diff --git a/CHANGES.rst b/CHANGES.rst index 9f6570db..3dd826f4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,6 @@ .. Copyright (C) 2020-2024 CERN. + Copyright (C) 2024 Graz University of Technology. 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 @@ -8,6 +9,11 @@ Changes ======= +Version 7.0.0 (release 2024-12-09) + +- setup: change to reusable workflows +- setup: bump major dependencies + Version v6.5.0 (released 2024-11-26) - queryparser: add CompositeSuggestQueryParser diff --git a/invenio_records_resources/__init__.py b/invenio_records_resources/__init__.py index f4d1e088..bd72a405 100644 --- a/invenio_records_resources/__init__.py +++ b/invenio_records_resources/__init__.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- # # Copyright (C) 2020-2024 CERN. +# Copyright (C) 2024 Graz University of Technology. # # 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 @@ -10,6 +11,6 @@ from .ext import InvenioRecordsResources -__version__ = "6.5.0" +__version__ = "7.0.0" __all__ = ("__version__", "InvenioRecordsResources")