From 4e28f1bee1f8e64186b362b8122edd1c2d00f429 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Fri, 6 Dec 2024 14:53:07 +0100 Subject: [PATCH] release: v3.0.0 --- CHANGES.rst | 10 ++++++++++ invenio_oaiserver/__init__.py | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index d9eda5d..bd32a9f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,7 @@ .. This file is part of Invenio. Copyright (C) 2016-2022 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,15 @@ Changes ======= +Version 3.0.0 (release 2024-12-06) + +- fix: tests, apply invenio-indexer change +- fix: docs reference target not found +- tests: apply changes for sqlalchemy>=2.0 +- setup: change to reusable workflows +- setup: bump major dependencies +- ci: fix docker compose call + Version v2.2.3 (released 2024-09-25) - percolator: allow lazy strings from config for deletions diff --git a/invenio_oaiserver/__init__.py b/invenio_oaiserver/__init__.py index 4d3865e..50a9532 100644 --- a/invenio_oaiserver/__init__.py +++ b/invenio_oaiserver/__init__.py @@ -2,6 +2,7 @@ # # This file is part of Invenio. # Copyright (C) 2015-2024 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. @@ -185,6 +186,6 @@ from .ext import InvenioOAIServer from .proxies import current_oaiserver -__version__ = "2.2.3" +__version__ = "3.0.0" __all__ = ("__version__", "InvenioOAIServer", "current_oaiserver")