Skip to content

Commit 9fa4059

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

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
@@ -190,6 +190,7 @@ jobs:
190190
- docs-sphinx
191191
- lint-black
192192
- lint-check-manifest
193+
- lint-commitlint
193194
- lint-dockerfile
194195
- lint-flake8
195196
- lint-pydocstyle

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ LABEL org.opencontainers.image.title="reana-server"
9595
LABEL org.opencontainers.image.url="https://github.com/reanahub/reana-server"
9696
LABEL org.opencontainers.image.vendor="reanahub"
9797
# x-release-please-start-version
98-
LABEL org.opencontainers.image.version="0.9.3"
98+
LABEL org.opencontainers.image.version="0.95.0-alpha.1"
9999
# 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 workflows to be run on REANA Cloud",
44
"title": "REANA Server",
5-
"version": "0.9.3"
5+
"version": "0.95.0a1"
66
},
77
"paths": {
88
"/account/settings/linkedaccounts/": {},

reana_server/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
@@ -159,8 +159,8 @@ pytz==2024.1 # via babel, bravado-core, celery
159159
pywebpack==1.2.0 # via flask-webpackext
160160
pyyaml==6.0.1 # via bravado, bravado-core, kubernetes, packtivity, reana-commons, snakemake, swagger-spec-validator, yadage, yadage-schemas, yte
161161
rdflib==5.0.0 # via cwltool, prov, schema-salad
162-
reana-commons[cwl,kubernetes,snakemake,yadage]==0.9.8 # via reana-db, reana-server (setup.py)
163-
reana-db==0.9.4 # via reana-server (setup.py)
162+
reana-commons[cwl,kubernetes,snakemake,yadage]==0.95.0a2 # via reana-db, reana-server (setup.py)
163+
reana-db==0.95.0a2 # via reana-server (setup.py)
164164
redis==5.0.2 # via invenio-accounts, invenio-celery
165165
requests[security]==2.25.0 # via bravado, bravado-core, cachecontrol, cwltool, kubernetes, packtivity, reana-server (setup.py), requests-oauthlib, schema-salad, snakemake, yadage, yadage-schemas
166166
requests-oauthlib==1.1.0 # via flask-oauthlib, invenio-oauth2server, invenio-oauthclient, kubernetes

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 = {
@@ -60,8 +60,8 @@
6060
"flask-celeryext<0.5.0",
6161
"gitpython>=3.1",
6262
"marshmallow>2.13.0,<=2.20.1",
63-
"reana-commons[kubernetes,yadage,snakemake,cwl]>=0.9.8,<0.10.0",
64-
"reana-db>=0.9.4,<0.10.0",
63+
"reana-commons[kubernetes,yadage,snakemake,cwl]>=0.95.0a2,<0.96.0",
64+
"reana-db>=0.95.0a2,<0.96.0",
6565
"requests==2.25.0",
6666
"tablib>=0.12.1",
6767
"uWSGI>=2.0.17",

0 commit comments

Comments
 (0)