diff --git a/CHANGES.rst b/CHANGES.rst index 6567bf349..387cb3790 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,11 @@ Changes ======= +Version v17.4.0 (released 2024-11-11) + +- admin: change default number of results from 10 to 20 +- UI/UX: improve display of ROR information in select field + Version v17.3.2 (released 2024-10-18) - ui: avoid exceptions if organizations list and request membership are not defined diff --git a/invenio_communities/__init__.py b/invenio_communities/__init__.py index 53fc74772..2f94a1ea2 100644 --- a/invenio_communities/__init__.py +++ b/invenio_communities/__init__.py @@ -11,6 +11,6 @@ from .ext import InvenioCommunities from .proxies import current_communities -__version__ = "17.3.2" +__version__ = "17.4.0" __all__ = ("InvenioCommunities", "current_communities") diff --git a/invenio_communities/administration/communities.py b/invenio_communities/administration/communities.py index 1f2eb9b96..642de1386 100644 --- a/invenio_communities/administration/communities.py +++ b/invenio_communities/administration/communities.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2022 CERN. +# Copyright (C) 2022-2024 CERN. # # Invenio-Communities is free software; you can redistribute it and/or # modify it under the terms of the MIT License; see LICENSE file for more