From 7253dd0cf201d150a45cb926e53049562f8b4c61 Mon Sep 17 00:00:00 2001 From: Christoph Ladurner Date: Thu, 1 Aug 2024 21:11:53 +0200 Subject: [PATCH] release: v4.1.1 --- CHANGES.rst | 9 +++++++++ invenio_requests/__init__.py | 3 ++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 67a091a4..6bccdf59 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,15 @@ Changes ======= +Version 4.1.1 (released 2024-08-01) + +- comments: fix jumping cursor +- ui: [#855] add community membership request label type +- service: fix request ID passing +- service: handle request parameters flexibly +- registry: allow entry pointsto be callables +- config: allow request search configuration + Version 4.1.0 (released 2024-03-23) - mappings: change "dynamic" values to string diff --git a/invenio_requests/__init__.py b/invenio_requests/__init__.py index 090fad6c..2b519154 100644 --- a/invenio_requests/__init__.py +++ b/invenio_requests/__init__.py @@ -2,6 +2,7 @@ # # Copyright (C) 2021-2024 CERN. # Copyright (C) 2021-2023 TU Wien. +# Copyright (C) 2024 Graz University of Technology. # # Invenio-Requests is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. @@ -19,7 +20,7 @@ current_requests_service, ) -__version__ = "4.1.0" +__version__ = "4.1.1" __all__ = ( "__version__",