From b335bf679388ca8555ceb9f8b8dab5479f5aa64f Mon Sep 17 00:00:00 2001 From: Sam Arbid Date: Wed, 30 Oct 2024 11:20:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20release:=20v10.8.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bumping the minor version causing the CI to fail: pip._vendor.resolvelib.resolvers.ResolutionTooDeep: 200000 --- 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 df851e451..b264c8066 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -12,6 +12,10 @@ Changes ======= +Version 10.8.8 (released 2024-10-30) + +- Feature: Config to require community approval for record publishing + Version 10.8.7 (released 2024-10-23) - access notification: provide correct draft preview link diff --git a/invenio_rdm_records/__init__.py b/invenio_rdm_records/__init__.py index 4aeea82bf..2fb867080 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-2024 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.7" +__version__ = "10.8.8" __all__ = ("__version__", "InvenioRDMRecords")