From 3d4abada070d441ca834dd085606649e7500602f Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Tue, 5 Nov 2024 21:59:02 +0100 Subject: [PATCH] release: v2.4.1 --- CHANGES.rst | 4 ++++ invenio_records/__init__.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 09240b53..90f5a3ed 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,10 @@ Changes ======= +Version v2.4.1 (released 2024-11-05) + +- model: make forward compatible to sqlalchemy >= 2 + Version v2.4.0 (released 2024-10-08) - relation: modified lookup_data for nested fields diff --git a/invenio_records/__init__.py b/invenio_records/__init__.py index e031a19f..3e52f8c2 100644 --- a/invenio_records/__init__.py +++ b/invenio_records/__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. @@ -331,7 +332,7 @@ from .api import Record from .ext import InvenioRecords -__version__ = "2.4.0" +__version__ = "2.4.1" __all__ = ( "InvenioRecords",