From faf762a7d1166b4d337a51cd83e27b8a5c7fe527 Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Thu, 28 Nov 2024 21:30:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v17.5.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 7 +++++++ invenio_communities/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9d63ffe41..1b6320ce4 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,13 @@ Changes ======= +Version v17.5.1 (released 2024-11-28) + +- settings-ui: fix organizations metadata payload + * Fixes a bug where organizations selected from the search in the + profile form, should also submit the `id` so that it's linked to the + affiliation vocabulary entry. + Version v17.5.0 (released 2024-11-27) - subcommunities: implement invitation request diff --git a/invenio_communities/__init__.py b/invenio_communities/__init__.py index 89d0ef1ce..0442497df 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.5.0" +__version__ = "17.5.1" __all__ = ("InvenioCommunities", "current_communities")