From 69b64090a7d83e60c259f9badc2e65aadcd524a2 Mon Sep 17 00:00:00 2001 From: costimuraru Date: Tue, 12 Nov 2019 15:16:54 +0200 Subject: [PATCH] [RELEASE] - Release version 1.12.2 --- .bumpversion.cfg | 2 +- README.md | 6 +++--- build_scripts/docker_push.sh | 4 ++-- setup.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c6023ce..3d017f9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.12.1 +current_version = 1.12.2 commit = True tag = True tag_name = {new_version} diff --git a/README.md b/README.md index bfd586c..391cca3 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ workon ops # uninstall previous `ops` version (if you have it) pip uninstall ops --yes -# install ops-cli v1.12.1 stable release +# install ops-cli v1.12.2 stable release pip install --upgrade ops-cli ``` @@ -161,7 +161,7 @@ source ops/bin/activate # uninstall previous `ops` version (if you have it) pip uninstall ops --yes -# install ops-cli v1.12.1 stable release +# install ops-cli v1.12.2 stable release pip2 install --upgrade ops-cli ``` @@ -177,7 +177,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:1.12.1 bash +docker run -it adobe/ops-cli:1.12.2 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 7848782..af7b2bb 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:1.12.1 -docker push adobe/ops-cli:1.12.1 +docker tag ops adobe/ops-cli:1.12.2 +docker push adobe/ops-cli:1.12.2 diff --git a/setup.py b/setup.py index e6ccac8..a27a84b 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,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-cli', - version='1.12.1', + version='1.12.2', description='Ops - wrapper for Terraform, Ansible, and SSH for cloud automation', long_description=_readme + '\n\n', long_description_content_type='text/markdown',