diff --git a/CHANGES.rst b/CHANGES.rst index bed7c71b..f440f167 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,13 @@ Changes ======= +Version v5.4.0 (released 2024-11-26) + +- UI: add seperator on list of requests +- ui: add subcommunity invitation facet and label +- ux: set tab title to request title +- requests: add missing facets and reorder + Version 5.3.0 (released 2024-11-15) - actions: allows passing kwargs to execute_action, so that custom behaviour diff --git a/invenio_requests/__init__.py b/invenio_requests/__init__.py index 6cbddc9d..8ce210f2 100644 --- a/invenio_requests/__init__.py +++ b/invenio_requests/__init__.py @@ -20,7 +20,7 @@ current_requests_service, ) -__version__ = "5.3.0" +__version__ = "5.4.0" __all__ = ( "__version__", diff --git a/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/Icons.js b/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/Icons.js index f3445343..5980d5ac 100644 --- a/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/Icons.js +++ b/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/Icons.js @@ -1,5 +1,5 @@ // This file is part of InvenioRequests -// Copyright (C) 2023 CERN. +// Copyright (C) 2023-2024 CERN. // // Invenio RDM Records is free software; you can redistribute it and/or modify it // under the terms of the MIT License; see LICENSE file for more details. diff --git a/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/labels/TypeLabel.js b/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/labels/TypeLabel.js index 202826be..dafe2d8a 100644 --- a/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/labels/TypeLabel.js +++ b/invenio_requests/assets/semantic-ui/js/invenio_requests/contrib/labels/TypeLabel.js @@ -1,5 +1,5 @@ // This file is part of InvenioRequests -// Copyright (C) 2022 CERN. +// Copyright (C) 2022-2024 CERN. // Copyright (C) 2024 Northwestern University. // // Invenio RDM Records is free software; you can redistribute it and/or modify it diff --git a/invenio_requests/assets/semantic-ui/js/invenio_requests/requestsAppInit.js b/invenio_requests/assets/semantic-ui/js/invenio_requests/requestsAppInit.js index e8156ccc..077f13fc 100644 --- a/invenio_requests/assets/semantic-ui/js/invenio_requests/requestsAppInit.js +++ b/invenio_requests/assets/semantic-ui/js/invenio_requests/requestsAppInit.js @@ -1,5 +1,5 @@ // This file is part of InvenioRequests -// Copyright (C) 2022 CERN. +// Copyright (C) 2022-2024 CERN. // Copyright (C) 2024 Northwestern University. // Copyright (C) 2024 KTH Royal Institute of Technology. // diff --git a/invenio_requests/assets/semantic-ui/js/invenio_requests/search/ComputerTabletRequestItem.js b/invenio_requests/assets/semantic-ui/js/invenio_requests/search/ComputerTabletRequestItem.js index 516761a8..ae72aaf6 100644 --- a/invenio_requests/assets/semantic-ui/js/invenio_requests/search/ComputerTabletRequestItem.js +++ b/invenio_requests/assets/semantic-ui/js/invenio_requests/search/ComputerTabletRequestItem.js @@ -1,5 +1,5 @@ // This file is part of InvenioRDM -// Copyright (C) 2023 CERN. +// Copyright (C) 2023-2024 CERN. // // Invenio App RDM is free software; you can redistribute it and/or modify it // under the terms of the MIT License; see LICENSE file for more details. diff --git a/invenio_requests/assets/semantic-ui/js/invenio_requests/search/MobileRequestItem.js b/invenio_requests/assets/semantic-ui/js/invenio_requests/search/MobileRequestItem.js index 945f1e83..5540dc46 100644 --- a/invenio_requests/assets/semantic-ui/js/invenio_requests/search/MobileRequestItem.js +++ b/invenio_requests/assets/semantic-ui/js/invenio_requests/search/MobileRequestItem.js @@ -1,5 +1,5 @@ // This file is part of InvenioRDM -// Copyright (C) 2022 CERN. +// Copyright (C) 2022-2024 CERN. // // Invenio App RDM is free software; you can redistribute it and/or modify it // under the terms of the MIT License; see LICENSE file for more details. diff --git a/invenio_requests/templates/semantic-ui/invenio_requests/details/index.html b/invenio_requests/templates/semantic-ui/invenio_requests/details/index.html index d484ce7b..ed2ec5c8 100644 --- a/invenio_requests/templates/semantic-ui/invenio_requests/details/index.html +++ b/invenio_requests/templates/semantic-ui/invenio_requests/details/index.html @@ -1,7 +1,7 @@ {# -*- coding: utf-8 -*- This file is part of Invenio. - Copyright (C) 2016-2020 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.