From 583e88337798bd276fee8f0dedab2e137c6787b4 Mon Sep 17 00:00:00 2001 From: Adi Muraru Date: Wed, 1 Sep 2021 12:21:01 +0300 Subject: [PATCH] [RELEASE] - Release version 2.0.6 --- .bumpversion.cfg | 2 +- README.md | 4 ++-- build_scripts/docker_push.sh | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1510a4eb..10406240 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.6dev +current_version = 2.0.6 commit = True tag = True tag_name = {new_version} diff --git a/README.md b/README.md index f8b45b69..b5fe90c5 100644 --- a/README.md +++ b/README.md @@ -150,7 +150,7 @@ workon ops # uninstall previous `ops` version (if you have it) pip uninstall ops --yes -# install ops-cli v2.0.6dev stable release +# install ops-cli v2.0.6 stable release pip install --upgrade ops-cli ``` @@ -166,7 +166,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:2.0.6dev bash +docker run -it adobe/ops-cli:2.0.6 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 2c1b3751..77b9a6fe 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:2.0.6dev -docker push adobe/ops-cli:2.0.6dev +docker tag ops adobe/ops-cli:2.0.6 +docker push adobe/ops-cli:2.0.6 diff --git a/setup.py b/setup.py index eb2666e0..7da82b34 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='2.0.6dev', + version='2.0.6', description='Ops - wrapper for Terraform, Ansible, and SSH for cloud automation', long_description=_readme + '\n\n', long_description_content_type='text/markdown',