diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d7756ebd..3dd51e2d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.11.7 +current_version = 1.11.8 commit = True tag = True tag_name = {new_version} diff --git a/README.md b/README.md index c5460998..f49d260a 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ workon ops # uninstall previous `ops` version (if you have it) pip uninstall ops --yes -# install ops-cli v1.11.7 stable release +# install ops-cli v1.11.8 stable release pip install --upgrade ops-cli ``` @@ -162,7 +162,7 @@ source ops/bin/activate # uninstall previous `ops` version (if you have it) pip uninstall ops --yes -# install ops-cli v1.11.7 stable release +# install ops-cli v1.11.8 stable release pip2 install --upgrade ops-cli ``` @@ -178,7 +178,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.11.7 bash +docker run -it adobe/ops-cli:1.11.8 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 51c929a3..7db93951 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.11.7 -docker push adobe/ops-cli:1.11.7 +docker tag ops adobe/ops-cli:1.11.8 +docker push adobe/ops-cli:1.11.8 diff --git a/setup.py b/setup.py index 37f1a1e3..db7cf85e 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.11.7', + version='1.11.8', description='Ops - wrapper for Terraform, Ansible, and SSH for cloud automation', long_description=_readme + '\n\n', long_description_content_type='text/markdown',