From b9861c0cc3872c9fac67dee5cecd5713aa291f2a Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Sun, 8 Dec 2024 23:14:47 +0100 Subject: [PATCH] release: v3.0.0 --- CHANGES.rst | 9 +++++++++ invenio_records_rest/__init__.py | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index cc4ae04..abac37e 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,7 @@ .. This file is part of Invenio. Copyright (C) 2015-2023 CERN. + Copyright (C) 2024 Graz University of Technology. 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. @@ -8,6 +9,14 @@ Changes ======= +Version 3.0.0 (2024-12-09) + +- tests: fix sneaking in indices +- tests: remove before_first_request use +- tests: apply changes for sqlalchemy>=2.0 +- setup: change to reusable workflows +- setup: bump major dependencies + Version 2.4.1 (2024-05-08) - marhsmallow: remove deprecation warning diff --git a/invenio_records_rest/__init__.py b/invenio_records_rest/__init__.py index 9b1beac..471d664 100644 --- a/invenio_records_rest/__init__.py +++ b/invenio_records_rest/__init__.py @@ -2,6 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2015-2023 CERN. +# Copyright (C) 2024 Graz University of Technology. # # 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. @@ -711,6 +712,6 @@ from .ext import InvenioRecordsREST from .proxies import current_records_rest -__version__ = "2.4.1" +__version__ = "3.0.0" __all__ = ("__version__", "current_records_rest", "InvenioRecordsREST")