diff --git a/CHANGES.rst b/CHANGES.rst index 0cd3fed9..d6ce8354 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,7 @@ This file is part of Invenio. Copyright (C) 2015-2025 CERN. Copyright (C) 2024-2025 Graz University of Technology. + Copyright (C) 2025 KTH Royal Institute 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. @@ -9,6 +10,11 @@ Changes ======= +Version v4.4.2 (released 2025-10-22) + +- i18n: pulled translations +- views: use .get() for THEME_FRONTPAGE to avoid hard dependency + Version v4.4.1 (released 2025-08-06) - theme: move invenio-administration styles diff --git a/invenio_theme/__init__.py b/invenio_theme/__init__.py index c81a4837..f62ce8c6 100644 --- a/invenio_theme/__init__.py +++ b/invenio_theme/__init__.py @@ -3,6 +3,7 @@ # This file is part of Invenio. # Copyright (C) 2015-2024 CERN. # Copyright (C) 2022-2025 Graz University of Technology. +# Copyright (C) 2025 KTH Royal Institute 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. @@ -490,7 +491,7 @@ def settings_item_1(): from .ext import InvenioTheme from .shared import menu -__version__ = "4.4.1" +__version__ = "4.4.2" __all__ = ("__version__", "InvenioTheme", "menu")