diff --git a/.bumpversion.cfg b/.bumpversion.cfg index aee56bc3..0f07b89e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1 +current_version = 1.2 commit = True tag = True tag_name = {new_version} diff --git a/README.md b/README.md index c3fa2f99..efbe2dba 100644 --- a/README.md +++ b/README.md @@ -89,8 +89,8 @@ pip2 install -U virtualenv virtualenv ops source ops/bin/activate -# install opswrapper v1.1 stable release -pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/1.1/ops-1.1.tar.gz +# install opswrapper v1.2 stable release +pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/1.2/ops-1.2.tar.gz # Optionally, install terraform to be able to access terraform plugin # See https://www.terraform.io/intro/getting-started/install.html @@ -103,7 +103,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.1 bash +docker run -it adobe/ops-cli:1.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 51ed2a17..92efe526 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.1 -docker push adobe/ops-cli:1.1 +docker tag ops adobe/ops-cli:1.2 +docker push adobe/ops-cli:1.2 diff --git a/setup.py b/setup.py index 44dea569..6a32b342 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='1.1', + version='1.2', description='Ops simple wrapper', author='Adobe', author_email='noreply@adobe.com',