Skip to content

Commit

Permalink
Merge baef843 into 63b0a9e
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborsimko committed Jun 9, 2020
2 parents 63b0a9e + baef843 commit 718bb80
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changes
=======

Version 0.6.1 (2020-06-09)
--------------------------

- Administrators:
- Fixes installation troubles for REANA 0.6.x release series by pinning several dependencies.
- Upgrades REANA-Commons package to latest Kubernetes Python client version.
- Amends documentation for `minikube start` to include VirtualBox hypervisor explicitly.

Version 0.6.0 (2019-12-27)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/administratorguide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ The minikube can be started as follows:

.. code-block:: console
$ minikube start --feature-gates="TTLAfterFinished=true"
$ minikube start --vm-driver=virtualbox --feature-gates="TTLAfterFinished=true"
REANA cluster can be easily deployed by means of the ``reana-cluster`` helper
script. The typical usage scenario goes as follows:
Expand Down
2 changes: 1 addition & 1 deletion docs/gettingstarted.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ You can also easily deploy your own REANA cloud instance by using the
$ # install kubectl 1.16.3 and minikube 1.5.2
$ sudo dpkg -i kubectl*.deb minikube*.deb
$ minikube start --feature-gates="TTLAfterFinished=true"
$ minikube start --vm-driver=virtualbox --feature-gates="TTLAfterFinished=true"
$ # create new virtual environment
$ virtualenv ~/.virtualenvs/myreana
$ source ~/.virtualenvs/myreana/bin/activate
Expand Down
2 changes: 1 addition & 1 deletion reana/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.6.0"
__version__ = "0.6.1"
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
history = open('CHANGES.rst').read()

tests_require = [
'mock>=3.0,<4.0',
'pytest-reana>=0.6.0,<0.7.0',
]

Expand Down

0 comments on commit 718bb80

Please sign in to comment.