From 846e0911f36523136f98176132e8716cd6fd8c59 Mon Sep 17 00:00:00 2001 From: Sam Arbid Date: Wed, 16 Oct 2024 14:48:02 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v10.9.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGES.rst | 4 ++++ invenio_rdm_records/__init__.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index d7def5678..d4f022268 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -12,6 +12,10 @@ Changes ======= +Version 10.8.6 (released 2024-10-16) + +- Feature: Config to require community approval for record publishing + Version 10.8.6 (released 2024-09-30) - dependencies: bump flask-iiif diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index c0afbf4a0..8ed3afc56 100644 --- a/invenio_rdm_records/__init__.py +++ b/invenio_rdm_records/__init__.py @@ -3,6 +3,7 @@ # Copyright (C) 2019-2024 CERN. # Copyright (C) 2019-2022 Northwestern University. # Copyright (C) 2024 Graz University of Technology. +# Copyright (C) 2024 KTH Royal Institute of Technology. # # 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. @@ -11,6 +12,6 @@ from .ext import InvenioRDMRecords -__version__ = "10.8.6" +__version__ = "10.9.0" __all__ = ("__version__", "InvenioRDMRecords")