diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 1b1f6a80..871c1ad9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.9.4" + ".": "0.9.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 55278100..4c60abfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [0.9.5](https://github.com/reanahub/reana-workflow-controller/compare/0.9.4...0.9.5) (2025-04-25) + + +### Features + +* **manager:** pass K8s requests/limits to job controller ([#643](https://github.com/reanahub/reana-workflow-controller/issues/643)) ([71aa633](https://github.com/reanahub/reana-workflow-controller/commit/71aa633d83b97aa9f3a230b4845e3d27323d1bbf)) + + +### Continuous integration + +* **commitlint:** consider commit body full stop as warning ([#643](https://github.com/reanahub/reana-workflow-controller/issues/643)) ([ee9210e](https://github.com/reanahub/reana-workflow-controller/commit/ee9210e4ecc834d79c721ac68dd99427ef206b78)) +* **runners:** upgrade CI runners to Ubuntu 22.04 ([#647](https://github.com/reanahub/reana-workflow-controller/issues/647)) ([2b004ce](https://github.com/reanahub/reana-workflow-controller/commit/2b004ce78456a31f398bbd9deb43b52f028f2d3a)) + ## [0.9.4](https://github.com/reanahub/reana-workflow-controller/compare/0.9.3...0.9.4) (2024-11-29) diff --git a/Dockerfile b/Dockerfile index d944b1ea..2c40d388 100644 --- a/Dockerfile +++ b/Dockerfile @@ -117,5 +117,5 @@ LABEL org.opencontainers.image.title="reana-workflow-controller" LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-workflow-controller" LABEL org.opencontainers.image.vendor="reanahub" # x-release-please-start-version -LABEL org.opencontainers.image.version="0.9.4" +LABEL org.opencontainers.image.version="0.9.5" # x-release-please-end diff --git a/docs/openapi.json b/docs/openapi.json index 26602286..27552a55 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.4" + "version": "0.9.5" }, "paths": { "/api/workflows": { diff --git a/reana_workflow_controller/version.py b/reana_workflow_controller/version.py index 75825193..7fffd780 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.4" +__version__ = "0.9.5"