Skip to content

Commit

Permalink
release: v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slint committed Jan 16, 2024
1 parent 714e625 commit 0315417
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions invenio_communities/__init__.py
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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")

0 comments on commit 0315417

Please sign in to comment.