diff --git a/CHANGES.rst b/CHANGES.rst index ff904445..f65b0a19 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,10 @@ Changes ======= -Version 0.9.2 (UNRELEASED) +Version 0.9.2 (2023-12-06) -------------------------- +- Adds automated multi-platform container image building for amd64 and arm64 architectures. - Changes CVMFS support to allow users to automatically mount any available repository. - Fixes container image building on the arm64 architecture. - Fixes the creation of Kubernetes jobs by retrying in case of error and by correctly handling the error after reaching the retry limit. diff --git a/docs/openapi.json b/docs/openapi.json index 181690c0..8ea35dd4 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -122,7 +122,7 @@ "info": { "description": "REANA Job Controller API", "title": "reana-job-controller", - "version": "0.9.1" + "version": "0.9.2" }, "paths": { "/apispec": {}, diff --git a/reana_job_controller/version.py b/reana_job_controller/version.py index 95bab044..52cd6452 100644 --- a/reana_job_controller/version.py +++ b/reana_job_controller/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.9.1" +__version__ = "0.9.2"