diff --git a/CHANGES.rst b/CHANGES.rst index 2dd6273..0a6135d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,11 @@ Changes ======= +Version v4.1.1 (released 2024-09-19) + +- fix: add compatibility layer to move to flask>=3 +- i18n: push translations + Version v4.1.0 (released 2024-08-07) - http headers: use and adjust vnd.inveniordm.v1+json http accept header diff --git a/invenio_pages/__init__.py b/invenio_pages/__init__.py index 11a8307..92dec35 100644 --- a/invenio_pages/__init__.py +++ b/invenio_pages/__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. @@ -11,6 +12,6 @@ from .ext import InvenioPages, InvenioPagesREST from .records.models import PageList, PageModel -__version__ = "4.1.0" +__version__ = "4.1.1" __all__ = ("__version__", "InvenioPages", "InvenioPagesREST", "PageModel", "PageList")