diff --git a/Dockerfile b/Dockerfile index d1930bb3..4295afc7 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.27/ops-0.27.tar.gz +RUN pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.28/ops-0.28.tar.gz diff --git a/README.md b/README.md index e255a717..b37d8a84 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,8 @@ pip2 install -U virtualenv virtualenv ops source ops/bin/activate -# install opswrapper v0.27 stable release -pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.27/ops-0.27.tar.gz +# install opswrapper v0.28 stable release +pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.28/ops-0.28.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.27 bash +docker run -it costimuraru/ops-cli:0.28 bash ``` After the container has started, you can start using `ops-cli`: diff --git a/setup.py b/setup.py index d4cb656e..dd53faee 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.27', + version='0.28', description='Ops simple wrapper', author='Adobe', author_email='noreply@adobe.com',