From 0b8c40a040c78ff55fabfbea064240bfa7a03dad Mon Sep 17 00:00:00 2001 From: Diego Rodriguez Date: Tue, 10 Nov 2020 11:21:25 +0100 Subject: [PATCH] release: 0.7.1 --- CHANGES.rst | 7 +++++-- docs/openapi.json | 2 +- reana_server/version.py | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e1596052..b2c6b62f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,13 @@ Changes ======= -Version 0.7.1 (UNRELEASED) +Version 0.7.1 (2020-11-10) -------------------------- -- Fixes problem on GitLab integration preventing the synchronisation of projects with existing webhooks. +- Fixes REANA <-> GItLab synchronisation for projects having additional external webhooks. +- Fixes restarting of Yadage and CWL workflows. +- Fixes conflicting ``kombu`` installation requirements by requiring Celery version 4. +- Changes ``/api/you`` endpoint to include REANA server version information. Version 0.7.0 (2020-10-20) -------------------------- diff --git a/docs/openapi.json b/docs/openapi.json index dae3737f..1cacdf1d 100644 --- a/docs/openapi.json +++ b/docs/openapi.json @@ -3,7 +3,7 @@ "info": { "description": "Submit workflows to be run on REANA Cloud", "title": "REANA Server", - "version": "0.7.0" + "version": "0.7.1" }, "parameters": {}, "paths": { diff --git a/reana_server/version.py b/reana_server/version.py index 9a865786..73c14fcd 100644 --- a/reana_server/version.py +++ b/reana_server/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.7.0" +__version__ = "0.7.1"