Skip to content

Commit

Permalink
Bump version: 0.7.16 → 0.7.17
Browse files Browse the repository at this point in the history
  • Loading branch information
troeger committed Nov 15, 2018
1 parent 9711291 commit 1b53ac8
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 0.7.16
current_version = 0.7.17

[bumpversion:file:.bumpversion.cfg]

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
SHELL = /bin/bash
VERSION = 0.7.16
VERSION = 0.7.17

.PHONY: build docs check-venv

Expand Down
4 changes: 2 additions & 2 deletions deployment/docker-compose-terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
volumes:
- postgres-volume:/var/lib/postgresql/data
web:
image: troeger/opensubmit-web:0.7.16
image: troeger/opensubmit-web:0.7.17
environment:
OPENSUBMIT_DEBUG: "False"
OPENSUBMIT_SERVER_URL: http://${external_adr}
Expand Down Expand Up @@ -40,7 +40,7 @@ services:
volumes:
- data-volume:/data
exec:
image: troeger/opensubmit-exec:0.7.16
image: troeger/opensubmit-exec:0.7.17
environment:
OPENSUBMIT_SERVER_HOST: http://web
tty: true
Expand Down
4 changes: 2 additions & 2 deletions deployment/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:
volumes:
- postgres-volume:/var/lib/postgresql/data
web:
image: troeger/opensubmit-web:0.7.16
image: troeger/opensubmit-web:0.7.17
environment:
OPENSUBMIT_DEBUG: "False"
OPENSUBMIT_SERVER_URL: http://localhost:8000
Expand All @@ -33,7 +33,7 @@ services:
volumes:
- data-volume:/data
exec1:
image: troeger/opensubmit-exec:0.7.16
image: troeger/opensubmit-exec:0.7.17
environment:
OPENSUBMIT_SERVER_HOST: http://web
build:
Expand Down
2 changes: 1 addition & 1 deletion deployment/k8s/exec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
spec:
containers:
- name: opensubmit-exec
image: troeger/opensubmit-exec:0.7.16
image: troeger/opensubmit-exec:0.7.17
env:
- name: OPENSUBMIT_SERVER_HOST
value: "opensubmit-web"
2 changes: 1 addition & 1 deletion deployment/k8s/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ spec:
spec:
containers:
- name: opensubmit-web
image: troeger/opensubmit-web:0.7.16
image: troeger/opensubmit-web:0.7.17
ports:
- containerPort: 80
env:
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
source_suffix = '.rst'
master_doc = 'index'
project = 'OpenSubmit'
version = '0.7.16'
release = '0.7.16'
version = '0.7.17'
release = '0.7.17'
copyright = u'2018, Peter Tröger'
author = u'Peter Tröger'
language = "en"
Expand Down
2 changes: 1 addition & 1 deletion executor/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name = 'opensubmit-exec',
version = '0.7.16',
version = '0.7.17',
url = 'https://github.com/troeger/opensubmit',
license='AGPL',
author = 'Peter Tröger',
Expand Down
2 changes: 1 addition & 1 deletion web/opensubmit/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from django.core.exceptions import ImproperlyConfigured

script_dir = os.path.dirname(__file__)
VERSION = '0.7.16'
VERSION = '0.7.17'

NOT_CONFIGURED_VALUE = '***not configured***'

Expand Down
2 changes: 1 addition & 1 deletion web/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def package_files(directory):

setup(
name = 'opensubmit-web',
version = '0.7.16',
version = '0.7.17',
url = 'https://github.com/troeger/opensubmit',
license='AGPL',
author = 'Peter Tröger',
Expand Down

0 comments on commit 1b53ac8

Please sign in to comment.