Skip to content

Commit 69b6409

Browse files
committed
[RELEASE] - Release version 1.12.2
1 parent 53aa3f1 commit 69b6409

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.12.1
2+
current_version = 1.12.2
33
commit = True
44
tag = True
55
tag_name = {new_version}

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ workon ops
142142
# uninstall previous `ops` version (if you have it)
143143
pip uninstall ops --yes
144144

145-
# install ops-cli v1.12.1 stable release
145+
# install ops-cli v1.12.2 stable release
146146
pip install --upgrade ops-cli
147147
```
148148

@@ -161,7 +161,7 @@ source ops/bin/activate
161161
# uninstall previous `ops` version (if you have it)
162162
pip uninstall ops --yes
163163

164-
# install ops-cli v1.12.1 stable release
164+
# install ops-cli v1.12.2 stable release
165165
pip2 install --upgrade ops-cli
166166
```
167167

@@ -177,7 +177,7 @@ You can try out `ops-cli`, by using docker. The docker image has all required pr
177177

178178
To start out a container, running the latest `ops-cli` docker image run:
179179
```sh
180-
docker run -it adobe/ops-cli:1.12.1 bash
180+
docker run -it adobe/ops-cli:1.12.2 bash
181181
```
182182

183183
After the container has started, you can start using `ops-cli`:

build_scripts/docker_push.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
set -e
33

44
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
5-
docker tag ops adobe/ops-cli:1.12.1
6-
docker push adobe/ops-cli:1.12.1
5+
docker tag ops adobe/ops-cli:1.12.2
6+
docker push adobe/ops-cli:1.12.2

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
_requires = [r for r in open(os.path.sep.join((_mydir, 'requirements.txt')), "r").read().split('\n') if len(r) > 1]
2424
setup(
2525
name='ops-cli',
26-
version='1.12.1',
26+
version='1.12.2',
2727
description='Ops - wrapper for Terraform, Ansible, and SSH for cloud automation',
2828
long_description=_readme + '\n\n',
2929
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)