From 66568e757fc204ff9fec5fe2ed955c771bb0e24e Mon Sep 17 00:00:00 2001 From: Tibor Simko Date: Tue, 6 Nov 2018 20:05:15 +0100 Subject: [PATCH] release: v0.4.0 Signed-off-by: Tibor Simko --- AUTHORS.rst | 3 +++ CHANGES.rst | 16 +++++++++++----- reana_client/version.py | 2 +- setup.py | 6 +++--- tests/conftest.py | 2 +- 5 files changed, 19 insertions(+), 10 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index f132dfb0..55e7dcde 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -7,4 +7,7 @@ The list of contributors in alphabetical order: - `Diego Rodriguez `_ - `Dinos Kousidis `_ - `Harri Hirvonsalo `_ +- `Jan Okraska `_ +- `Rokas Maciulaitis `_ +- `Sinclert Perez `_ - `Tibor Simko `_ diff --git a/CHANGES.rst b/CHANGES.rst index e7e14e12..6e8c2b92 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,15 +1,21 @@ Changes ======= +Version 0.4.0 (2018-11-07) +-------------------------- + +- Enhances test suite and increases code coverage. +- Changes license to MIT. + Version 0.3.1 (2018-09-25) -------------------------- -* Amends upload and download commands that will now upload/download all the +- Amends upload and download commands that will now upload/download all the files specified in ``reana.yaml`` in case no arguments are provided. -* Fixes ``status`` command's JSON output mode. -* Upgrades CWL reference implementation to version ``1.0.20180912090223``. -* Renames Serial workflow operational parameter from ``CACHING``to ``CACHE``. -* Adds support for Python 3.7. +- Fixes ``status`` command's JSON output mode. +- Upgrades CWL reference implementation to version ``1.0.20180912090223``. +- Renames Serial workflow operational parameter from ``CACHING``to ``CACHE``. +- Adds support for Python 3.7. Version 0.3.0 (2018-08-10) -------------------------- diff --git a/reana_client/version.py b/reana_client/version.py index 59bc2e15..2c605a9c 100644 --- a/reana_client/version.py +++ b/reana_client/version.py @@ -14,4 +14,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.3.1" +__version__ = "0.4.0" diff --git a/setup.py b/setup.py index 6a925568..c58c9e0b 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ 'pytest-cache>=1.0', 'pytest-cov>=1.8.0', 'pytest-pep8>=1.0.6', - 'pytest-reana>=0.4.0.dev20181105,<0.5.0', + 'pytest-reana>=0.4.0,<0.5.0', ] extras_require = { @@ -53,8 +53,8 @@ install_requires = [ 'click>=7,<8', 'cwltool==1.0.20180912090223', - 'pyOpenSSL==17.3.0', # FIXME remove once yadage-schemas solves deps. - 'reana-commons>=0.4.0.dev20181105,<0.5.0', + 'pyOpenSSL==17.5.0', # FIXME remove once yadage-schemas solves deps. + 'reana-commons>=0.4.0,<0.5.0', 'rfc3987==1.3.7', # FIXME remove once yadage-schemas solves deps. 'strict-rfc3339==0.7', # FIXME remove once yadage-schemas solves deps. 'tablib>=0.12.1,<0.13', diff --git a/tests/conftest.py b/tests/conftest.py index 83e7a4bc..ef2c334b 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -40,7 +40,7 @@ def create_yaml_workflow_schema(): """Return dummy yaml workflow schema.""" reana_yaml_schema = \ ''' - version: 0.3.0 + version: 0.4.0 inputs: files: - code/helloworld.py