From 23f0a0f62a0e38191fb6d34f753e16be02560f33 Mon Sep 17 00:00:00 2001 From: Marco Donadoni Date: Thu, 30 Nov 2023 16:07:12 +0100 Subject: [PATCH] release: 0.9.2 --- CHANGES.rst | 9 ++++++--- docs/openapi.json | 2 +- reana_workflow_controller/version.py | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9a2659ba..2e249baa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,11 +1,14 @@ Changes ======= -Version 0.9.2 (UNRELEASED) +Version 0.9.2 (2023-12-01) -------------------------- -- Changes the pagination logic to avoid counting twice the total amount of records. -- Fixes job status consumer exception while attempting to fetch workflow engine logs for workflows could not have been successfully scheduled. +- Adds automated multi-platform container image building for amd64 and arm64 architectures. +- Changes the workflow deletion endpoint to return a different and more appropriate message when deleting all the runs of a workflow. +- Changes CVMFS support to allow users to automatically mount any available repository. +- Changes how pagination is performed in order to avoid counting twice the total number of records. +- Fixes job status consumer exception while attempting to fetch workflow engine logs for workflows that were not successfully scheduled. Version 0.9.1 (2023-09-27) -------------------------- diff --git a/docs/openapi.json b/docs/openapi.json index ef6c28d3..4f437081 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -2,7 +2,7 @@ "info": { "description": "Submit and manage workflows", "title": "REANA Workflow Controller", - "version": "0.9.1" + "version": "0.9.2" }, "paths": { "/api/workflows": { diff --git a/reana_workflow_controller/version.py b/reana_workflow_controller/version.py index e3a0880c..0ea40913 100644 --- a/reana_workflow_controller/version.py +++ b/reana_workflow_controller/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.9.1" +__version__ = "0.9.2"