Skip to content

Commit 114ea56

Browse files
committed
[RELEASE] - Release version 0.31
Signed-off-by: Constantin Muraru <[email protected]>
1 parent 9fcc4ff commit 114ea56

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.30
2+
current_version = 0.31
33
commit = True
44
tag = True
55
tag_name = {new_version}

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ services:
66
branches:
77
only:
88
- master
9+
- /\d+\.\d+/
910

1011
env:
1112
- BOTO_CONFIG=/dev/null

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ pip2 install -U virtualenv
8585
virtualenv ops
8686
source ops/bin/activate
8787

88-
# install opswrapper v0.30 stable release
89-
pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.30/ops-0.30.tar.gz
88+
# install opswrapper v0.31 stable release
89+
pip2 install --upgrade https://github.com/adobe/ops-cli/releases/download/0.31/ops-0.31.tar.gz
9090

9191
# Optionally, install terraform to be able to access terraform plugin
9292
# See https://www.terraform.io/intro/getting-started/install.html
@@ -99,7 +99,7 @@ You can try out `ops-cli`, by using docker. The docker image has all required pr
9999

100100
To start out a container, running the latest `ops-cli` docker image run:
101101
```sh
102-
docker run -it adobe/ops-cli:0.30 bash
102+
docker run -it adobe/ops-cli:0.31 bash
103103
```
104104

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

build_scripts/docker_push.sh

Lines changed: 2 additions & 2 deletions
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:0.30
6-
docker push adobe/ops-cli:0.30
5+
docker tag ops adobe/ops-cli:0.31
6+
docker push adobe/ops-cli:0.31

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
_requires = [ r for r in open(os.path.sep.join((_mydir,'requirements.txt')), "r").read().split('\n') if len(r)>1 ]
1717
setup(
1818
name='ops',
19-
version='0.30',
19+
version='0.31',
2020
description='Ops simple wrapper',
2121
author='Adobe',
2222
author_email='[email protected]',

0 commit comments

Comments
 (0)