diff --git a/CHANGES.rst b/CHANGES.rst index 90f5a3ed..12cf9a16 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,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. @@ -8,6 +9,12 @@ Changes ======= +Version 3.0.0 (released 2024-12-05) + +- fix: IndexError: negative indexes not allowed +- setup: change to reusable workflows +- setup: bump major dependencies + Version v2.4.1 (released 2024-11-05) - model: make forward compatible to sqlalchemy >= 2 diff --git a/invenio_records/__init__.py b/invenio_records/__init__.py index 3e52f8c2..22a61292 100644 --- a/invenio_records/__init__.py +++ b/invenio_records/__init__.py @@ -332,7 +332,7 @@ from .api import Record from .ext import InvenioRecords -__version__ = "2.4.1" +__version__ = "3.0.0" __all__ = ( "InvenioRecords",