From 2e363f35c1df91a8ba92b28a7fb26035b857d976 Mon Sep 17 00:00:00 2001 From: Alex Ioannidis Date: Wed, 6 Sep 2023 11:16:40 +0200 Subject: [PATCH] release: v4.19.0 --- CHANGES.rst | 12 ++++++++++++ invenio_rdm_records/__init__.py | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 7c8ef11a4..d315279b0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,6 +10,18 @@ Changes ======= +Version 4.19.0 (2023-09-06) + +- custom fields: update namespace values +- tokens: make RAT subject schema configurable +- services: handle no-value DOI for links +- deposit-ui: use "vnd.inveniordm.v1+json" always +- access: serialize "owned_by" field +- resources: add "x-bibtex" record serialization +- resources: make record serializers configurable +- schema: expose checksum and file ID +- services: make record/draft API classes configurable + Version 4.18.0 (2023-09-06) - uow: use ParentRecordCommitOp when committing parent diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index 346f2faa3..093f079bf 100644 --- a/invenio_rdm_records/__init__.py +++ b/invenio_rdm_records/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright (C) 2019-2022 CERN. +# Copyright (C) 2019-2023 CERN. # Copyright (C) 2019-2022 Northwestern University. # # Invenio-RDM-Records is free software; you can redistribute it and/or modify @@ -10,6 +10,6 @@ from .ext import InvenioRDMRecords -__version__ = "4.18.0" +__version__ = "4.19.0" __all__ = ("__version__", "InvenioRDMRecords")