Skip to content

Commit c4188b1

Browse files
committed
📦 release: v10.1.2
1 parent 89ea407 commit c4188b1

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

‎CHANGES.rst

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@
1111
Changes
1212
=======
1313

14+
Version 10.1.2 (released 2024-04-22)
15+
16+
- review: fix draft indexing operations order
17+
- Fixes a bug where when publishing directly to a community (e.g.
18+
beacause the uploader is a community admin/owner/curator), the draft
19+
would get deleted from the index and then get indexed again, thus
20+
appearing in the users' dashboard both as a published record and
21+
as a draft in review.
22+
1423
Version 10.1.1 (released 2024-04-19)
1524

1625
- pids: fix register/update serialization

‎invenio_rdm_records/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
from .ext import InvenioRDMRecords
1212

13-
__version__ = "10.1.1"
13+
__version__ = "10.1.2"
1414

1515
__all__ = ("__version__", "InvenioRDMRecords")

‎invenio_rdm_records/services/review/service.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2022 CERN.
3+
# Copyright (C) 2022-2024 CERN.
44
# Copyright (C) 2023 Graz University of Technology.
55
#
66
# Invenio-RDM-Records is free software; you can redistribute it and/or modify

‎tests/services/test_service_review.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2021 CERN.
3+
# Copyright (C) 2021-2024 CERN.
44
#
55
# Invenio-RDM-Records is free software; you can redistribute it and/or modify
66
# it under the terms of the MIT License; see LICENSE file for more details.

0 commit comments

Comments
 (0)