From 0315417bf62faa5100d2b9a922ce1faa207fc6d0 Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Tue, 16 Jan 2024 15:14:02 +0100 Subject: [PATCH] release: v8.0.0 --- CHANGES.rst | 10 +++++++++- invenio_communities/__init__.py | 4 ++-- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 23d321b4f..23cb912b3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,6 @@ .. This file is part of Invenio. - Copyright (C) 2016-2023 CERN. + Copyright (C) 2016-2024 CERN. 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 +9,14 @@ Changes ======= +Version 8.0.0 (released 2024-01-16) + +- global: add support for community theming +- adds new data field called `theme` +- adds specific template loader that handles themed templates per community +- enables feature only for system user at the moment programmtically +- disables indexing of community theme information + Version 7.18.0 (released 2023-12-12) - replaced ckeditor with tinymce due to license issue diff --git a/invenio_communities/__init__.py b/invenio_communities/__init__.py index e468b2ff1..27ca29ad5 100644 --- a/invenio_communities/__init__.py +++ b/invenio_communities/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # # This file is part of Invenio. -# Copyright (C) 2016-2023 CERN. +# Copyright (C) 2016-2024 CERN. # # 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 +11,6 @@ from .ext import InvenioCommunities from .proxies import current_communities -__version__ = "7.18.0" +__version__ = "8.0.0" __all__ = ("InvenioCommunities", "current_communities")