diff --git a/CHANGES.rst b/CHANGES.rst index 1a209e98..6567bf34 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,11 @@ Changes ======= +Version v17.3.2 (released 2024-10-18) + +- ui: avoid exceptions if organizations list and request membership are not defined +- ui: verified icon display logic change + Version v17.3.1 (released 2024-10-18) - communities-ui: make verified icon display depend on parent community diff --git a/invenio_communities/__init__.py b/invenio_communities/__init__.py index eb47c94a..53fc7477 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.1" +__version__ = "17.3.2" __all__ = ("InvenioCommunities", "current_communities")