From c79964701e770e295c6d43bd2f62dba4f43633d7 Mon Sep 17 00:00:00 2001 From: Adrian Muraru Date: Mon, 22 Apr 2019 22:34:26 +0000 Subject: [PATCH] [RELEASE] - Version 0.29 --- Dockerfile | 2 +- README.md | 6 +++--- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4295afc..4df8519 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,4 @@ RUN helm init --client-only RUN pip2 install -U virtualenv RUN virtualenv ops RUN source ops/bin/activate -RUN pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.28/ops-0.28.tar.gz +RUN pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.29/ops-0.29.tar.gz diff --git a/README.md b/README.md index b37d8a8..a49ae5c 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,8 @@ pip2 install -U virtualenv virtualenv ops source ops/bin/activate -# install opswrapper v0.28 stable release -pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.28/ops-0.28.tar.gz +# install opswrapper v0.29 stable release +pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.29/ops-0.29.tar.gz # Optionally, install terraform to be able to access terraform plugin # See https://www.terraform.io/intro/getting-started/install.html @@ -99,7 +99,7 @@ You can try out `ops-cli`, by using docker. The docker image has all required pr To start out a container, running the latest `ops-cli` docker image run: ```sh -docker run -it costimuraru/ops-cli:0.28 bash +docker run -it costimuraru/ops-cli:0.29 bash ``` After the container has started, you can start using `ops-cli`: diff --git a/setup.py b/setup.py index dd53fae..835b3a8 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ _requires = [ r for r in open(os.path.sep.join((_mydir,'requirements.txt')), "r").read().split('\n') if len(r)>1 ] setup( name='ops', - version='0.28', + version='0.29', description='Ops simple wrapper', author='Adobe', author_email='noreply@adobe.com',