Skip to content

Commit

Permalink
Prepare next release
Browse files Browse the repository at this point in the history
  • Loading branch information
msimonin committed Oct 1, 2018
1 parent 82eae20 commit 8879d47
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/tutorial/index.org
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ virtualenv --python=python2.7 venv
# (venv) enos:~/enos-myxp$
. venv/bin/activate
# (venv) enos:~/enos-myxp$
pip install "enos[openstack]==4.1.2"
pip install "enos[openstack]==4.1.3"
#+END_SRC

#+BEGIN_note
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ Then, install EnOS in your working directory:
# (venv) enos:~/enos-myxp$
. venv/bin/activate
# (venv) enos:~/enos-myxp$
pip install "enos[openstack]==4.1.2"
pip install "enos[openstack]==4.1.3"
.. note::

Expand Down
2 changes: 1 addition & 1 deletion enos/utils/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@
FAKE_NEUTRON_EXTERNAL_INTERFACE = 'nei'

# ENOS Setup
VERSION = '4.1.2'
VERSION = '4.1.3'
18 changes: 17 additions & 1 deletion tests/functionnal/tests/tutorial/enos-node.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
#!/usr/bin/env bash
# Setup of Functional Test
# :PROPERTIES:
# :header-args: :tangle ../../tests/functionnal/tests/tutorial/enos-node.sh :noweb yes
# :END:

# Every source blocks of this section are going be tangled at the top of
# the functional test file.

# Set the Shebang, tells to exit immediately if a command exits with a
# non-zero status, and tells to print commands and their arguments as
# they are executed.

set -o errexit
set -o xtrace



# Then, install EnOS in your working directory:
Expand All @@ -8,7 +24,7 @@ virtualenv --python=python2.7 venv
# (venv) enos:~/enos-myxp$
. venv/bin/activate
# (venv) enos:~/enos-myxp$
pip install "enos[openstack]==4.1.2"
pip install "enos[openstack]==4.1.3"

# Deploy OpenStack
# EnOS manages all the aspects of an OpenStack deployment by calling
Expand Down

0 comments on commit 8879d47

Please sign in to comment.