Skip to content

Commit 95bd5ba

Browse files
committed
📦 release: v16.3.0
1 parent fc869cf commit 95bd5ba

File tree

8 files changed

+20
-7
lines changed

8 files changed

+20
-7
lines changed

‎CHANGES.rst

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

15+
Version v16.3.0 (released 2024-11-27)
16+
17+
- github: added default license from Github API
18+
- deposit-ui: fix affiliations rendering during edits
19+
- github: added custom_fields in metadata extraction
20+
- github: added optional swhid field to the bibtex export
21+
- datacite: improve error logging formatting and grouping
22+
* Avoids f-strings in logging calls so that entries are easier to be
23+
grouped.
24+
* Adds exception info to the logged errors.
25+
- config: added service schema from config
26+
- requests: manage sending notifications
27+
1528
Version v16.2.0 (released 2024-11-19)
1629

1730
- search: pass search parameters to collection records

‎invenio_rdm_records/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212

1313
from .ext import InvenioRDMRecords
1414

15-
__version__ = "16.2.0"
15+
__version__ = "16.3.0"
1616

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

‎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 CERN
3+
# Copyright (C) 2023-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.

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

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

‎invenio_rdm_records/services/github/release.py

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

‎invenio_rdm_records/services/pids/providers/datacite.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
# Copyright (C) 2023 Northwestern University.
55
# Copyright (C) 2023-2024 Graz University of Technology.
66
#

‎tests/fixtures/test_fixtures.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
# Copyright (C) 2021 Northwestern University.
55
#
66
# Invenio-RDM-Records is free software; you can redistribute it and/or modify

‎tests/services/pids/providers/test_datacite_pid_provider.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
# Copyright (C) 2023 Northwestern University.
55
#
66
# Invenio-RDM-Records is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)