From 114ea56b3453a03b909632128e6150fa10655c6a Mon Sep 17 00:00:00 2001 From: Constantin Muraru Date: Tue, 9 Jul 2019 00:25:02 +0300 Subject: [PATCH] [RELEASE] - Release version 0.31 Signed-off-by: Constantin Muraru --- .bumpversion.cfg | 2 +- .travis.yml | 1 + README.md | 6 +++--- build_scripts/docker_push.sh | 4 ++-- setup.py | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 50f0875..1a41233 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.30 +current_version = 0.31 commit = True tag = True tag_name = {new_version} diff --git a/.travis.yml b/.travis.yml index fccaa23..c813c95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ services: branches: only: - master + - /\d+\.\d+/ env: - BOTO_CONFIG=/dev/null diff --git a/README.md b/README.md index 33cab03..d9ae20e 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,8 @@ pip2 install -U virtualenv virtualenv ops source ops/bin/activate -# install opswrapper v0.30 stable release -pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.30/ops-0.30.tar.gz +# install opswrapper v0.31 stable release +pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.31/ops-0.31.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 adobe/ops-cli:0.30 bash +docker run -it adobe/ops-cli:0.31 bash ``` After the container has started, you can start using `ops-cli`: diff --git a/build_scripts/docker_push.sh b/build_scripts/docker_push.sh index 1b9a4dd..942089a 100644 --- a/build_scripts/docker_push.sh +++ b/build_scripts/docker_push.sh @@ -2,5 +2,5 @@ set -e echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin -docker tag ops adobe/ops-cli:0.30 -docker push adobe/ops-cli:0.30 +docker tag ops adobe/ops-cli:0.31 +docker push adobe/ops-cli:0.31 diff --git a/setup.py b/setup.py index cfe468a..6f83932 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.30', + version='0.31', description='Ops simple wrapper', author='Adobe', author_email='noreply@adobe.com',