Skip to content

Commit 03d3374

Browse files
committed
📦 release: v16.6.0
1 parent e350197 commit 03d3374

File tree

10 files changed

+21
-10
lines changed

10 files changed

+21
-10
lines changed

‎CHANGES.rst

+11
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,17 @@
1212
Changes
1313
=======
1414

15+
Version v16.6.0 (released 2025-01-16)
16+
17+
- notifications: add custom comment template for record inclusion
18+
and draft review requests
19+
- deposit-ui: fix affiliations dropdown behavior for custom values
20+
- moderation: fix use of uow
21+
- serializers/bibtex: Conference paper not falling back to proceedings
22+
- serializers/bibtex: Conference proceeding to proceedings
23+
- serializers/bibtex: year and month using publication date
24+
- rights: fix serialize condition for controlled license
25+
1526
Version v16.5.1 (released 2024-12-16)
1627

1728
- pids: add manage permission to be able to manage DOIs

‎invenio_rdm_records/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2019-2024 CERN.
3+
# Copyright (C) 2019-2025 CERN.
44
# Copyright (C) 2019-2024 Northwestern University.
55
# Copyright (C) 2024 KTH Royal Institute of Technology.
66
# Copyright (C) 2024 Graz University of Technology.
@@ -12,6 +12,6 @@
1212

1313
from .ext import InvenioRDMRecords
1414

15-
__version__ = "16.5.1"
15+
__version__ = "16.6.0"
1616

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

‎invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/fields/AffiliationsField/AffiliationsField.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of Invenio-RDM-Records
2-
// Copyright (C) 2020-2024 CERN.
2+
// Copyright (C) 2020-2025 CERN.
33
// Copyright (C) 2020-2022 Northwestern University.
44
// Copyright (C) 2021 Graz University of Technology.
55
//

‎invenio_rdm_records/assets/semantic-ui/js/invenio_rdm_records/src/deposit/serializers/RightsVocabularyField.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file is part of Invenio-RDM-Records
2-
// Copyright (C) 2020-2023 CERN.
2+
// Copyright (C) 2020-2025 CERN.
33
// Copyright (C) 2020-2022 Northwestern University.
44
//
55
// Invenio-RDM-Records is free software; you can redistribute it and/or modify it

‎invenio_rdm_records/notifications/builders.py

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

‎invenio_rdm_records/requests/community_inclusion.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2023-2024 CERN.
3+
# Copyright (C) 2023-2025 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.

‎invenio_rdm_records/requests/community_submission.py

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

‎invenio_rdm_records/resources/serializers/bibtex/schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2023-2024 CERN
3+
# Copyright (C) 2023-2025 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.

‎invenio_rdm_records/services/communities/moderation.py

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

‎tests/resources/serializers/test_bibtex_serializer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# Copyright (C) 2023-2024 CERN
3+
# Copyright (C) 2023-2025 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)