Skip to content

Commit

Permalink
release: v0.5.0
Browse files Browse the repository at this point in the history
* Closes #97

Signed-off-by: Rokas Maciulaitis <rokas.maciulaitis@cern.ch>
  • Loading branch information
Rokas Maciulaitis committed Apr 23, 2019
1 parent 001bd54 commit cff9802
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 14 deletions.
1 change: 1 addition & 0 deletions AUTHORS.rst
Expand Up @@ -8,5 +8,6 @@ The list of contributors in alphabetical order:
- `Diego Rodriguez <https://orcid.org/0000-0003-0649-2002>`_
- `Dinos Kousidis <https://orcid.org/0000-0002-4914-4289>`_
- `Michael R. Crusoe <https://orcid.org/0000-0002-2961-9670>`_
- `Rokas Maciulaitis <https://orcid.org/0000-0003-1064-6967>`_
- `Sinclert Pérez <https://www.linkedin.com/in/sinclert>`_
- `Tibor Simko <https://orcid.org/0000-0001-7202-5803>`_
15 changes: 15 additions & 0 deletions CHANGES.rst
@@ -1,8 +1,23 @@
Changes
=======

Version 0.5.0 (2019-04-23)
--------------------------

- Makes workflow engine independent of Celery so that independent workflow
instances are created on demand for each user.
- Replaces ``api_client`` module with centralised one from REANA-Commons.
- Introduces CVMFS mounts in job specifications.
- Sets default file mode creation mask to 002 so that workflows are able to
write to shared directories for any user identity under which the workflow
processes may be running.
- Makes docker image slimmer by using ``python:2.7-slim``.
- Centralises log level and log format configuration.
- Upgrades cwltool to 1.0.20181118133959.

Version 0.4.0 (2018-11-06)
--------------------------

- Improves AMQP re-connection handling. Switches from ``pika`` to ``kombu``.
- Utilises common openapi client for communication with REANA-Job-Controller.
- Changes license to MIT.
Expand Down
5 changes: 1 addition & 4 deletions README.rst
Expand Up @@ -2,13 +2,10 @@
REANA-Workflow-Engine-CWL
===========================

.. image:: https://img.shields.io/pypi/pyversions/reana-workflow-engine-cwl.svg
:target: https://pypi.org/pypi/reana-workflow-engine-cwl

.. image:: https://img.shields.io/travis/reanahub/reana-workflow-engine-cwl.svg
:target: https://travis-ci.org/reanahub/reana-workflow-engine-cwl

.. image:: https://readthedocs.org/projects/docs/badge/?version=latest
.. image:: https://readthedocs.org/projects/reana-workflow-engine-cwl/badge/?version=latest
:target: https://reana-workflow-engine-cwl.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/coveralls/reanahub/reana-workflow-engine-cwl.svg
Expand Down
6 changes: 2 additions & 4 deletions docs/conf.py
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of REANA.
# Copyright (C) 2017, 2018 CERN.
# Copyright (C) 2017, 2018, 2019 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand Down Expand Up @@ -40,8 +40,6 @@
'sphinx.ext.graphviz',
'sphinx.ext.intersphinx',
'sphinx.ext.viewcode',
'sphinxcontrib.httpdomain',
'sphinxcontrib.openapi'
]

# Add any paths that contain templates here, relative to this directory.
Expand All @@ -58,7 +56,7 @@

# General information about the project.
project = 'reana'
copyright = '2017, info@reana.io'
copyright = '2017-2019, info@reana.io'
author = 'info@reana.io'

# The version info for the project you're documenting, acts as replacement for
Expand Down
4 changes: 2 additions & 2 deletions reana_workflow_engine_cwl/version.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#
# This file is part of REANA.
# Copyright (C) 2017, 2018 CERN.
# Copyright (C) 2017, 2018, 2019 CERN.
#
# REANA is free software; you can redistribute it and/or modify it
# under the terms of the MIT License; see LICENSE file for more details.
Expand All @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.5.0.dev20190220"
__version__ = "0.5.0"
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -38,9 +38,7 @@
extras_require = {
'docs': [
'Sphinx>=1.4.4,<1.6',
'sphinx-rtd-theme>=0.1.9',
'sphinxcontrib-httpdomain>=1.5.0',
'sphinxcontrib-openapi>=0.3.0'
'sphinx-rtd-theme>=0.1.9'
],
'tests': tests_require,
}
Expand All @@ -63,7 +61,7 @@
'enum34>=1.1.6',
'SQLAlchemy>=1.1.14',
'SQLAlchemy-Utils>=0.32.18',
'reana-commons[kubernetes]>=0.5.0.dev20190402,<0.6.0',
'reana-commons>=0.5.0,<0.6.0',
]

packages = find_packages()
Expand Down

0 comments on commit cff9802

Please sign in to comment.