Skip to content

Commit 9ebbf2a

Browse files
committed
chore(master): release 0.95.0-alpha.1
Release-As: 0.95.0
1 parent 1dc2116 commit 9ebbf2a

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

.commitlintrc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
rules:
22
body-case: [2, always, sentence-case]
3-
body-full-stop: [2, always]
3+
body-full-stop: [1, always]
44
body-leading-blank: [2, always]
55
body-max-line-length: [2, always, 72]
66
footer-leading-blank: [2, always]

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ jobs:
198198
- docs-sphinx
199199
- lint-black
200200
- lint-check-manifest
201+
- lint-commitlint
201202
- lint-dockerfile
202203
- lint-flake8
203204
- lint-pydocstyle

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@ LABEL org.opencontainers.image.title="reana-workflow-controller"
117117
LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-workflow-controller"
118118
LABEL org.opencontainers.image.vendor="reanahub"
119119
# x-release-please-start-version
120-
LABEL org.opencontainers.image.version="0.9.3"
120+
LABEL org.opencontainers.image.version="0.95.0-alpha.1"
121121
# x-release-please-end

docs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"info": {
33
"description": "Submit and manage workflows",
44
"title": "REANA Workflow Controller",
5-
"version": "0.9.3"
5+
"version": "0.95.0a1"
66
},
77
"paths": {
88
"/api/workflows": {

reana_workflow_controller/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
from __future__ import absolute_import, print_function
1616

17-
__version__ = "0.9.3"
17+
__version__ = "0.95.0a1"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ pyrsistent==0.20.0 # via jsonschema
5252
python-dateutil==2.9.0 # via bravado, bravado-core, kubernetes
5353
pytz==2024.1 # via bravado-core
5454
pyyaml==6.0.1 # via bravado, bravado-core, kubernetes, reana-commons, swagger-spec-validator
55-
reana-commons[kubernetes]==0.9.8 # via reana-db, reana-workflow-controller (setup.py)
56-
reana-db==0.9.4 # via reana-workflow-controller (setup.py)
55+
reana-commons[kubernetes]==0.95.0a2 # via reana-db, reana-workflow-controller (setup.py)
56+
reana-db==0.95.0a2 # via reana-workflow-controller (setup.py)
5757
requests==2.25.0 # via bravado, bravado-core, kubernetes, reana-workflow-controller (setup.py), requests-oauthlib
5858
requests-oauthlib==1.3.1 # via kubernetes
5959
rfc3987==1.3.8 # via jsonschema

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
history = open("CHANGELOG.md").read()
2020

2121
tests_require = [
22-
"pytest-reana>=0.9.2,<0.10.0",
22+
"pytest-reana>=0.95.0a2,<0.96.0",
2323
]
2424

2525
extras_require = {
@@ -56,8 +56,8 @@
5656
"jsonpickle>=0.9.6",
5757
"marshmallow>2.13.0,<=2.20.1",
5858
"packaging>=18.0",
59-
"reana-commons[kubernetes]>=0.9.8,<0.10.0",
60-
"reana-db>=0.9.4,<0.10.0",
59+
"reana-commons[kubernetes]>=0.95.0a2,<0.96.0",
60+
"reana-db>=0.95.0a2,<0.96.0",
6161
"requests==2.25.0",
6262
"sqlalchemy-utils>=0.31.0",
6363
"uwsgi-tools>=1.1.1",

0 commit comments

Comments
 (0)