Skip to content

Commit cca9843

Browse files
committed
chore(release): update version in master to v1.5.0-dev
1 parent 7b3c3b6 commit cca9843

18 files changed

Lines changed: 18 additions & 19 deletions

File tree

builder/image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ ADD etc /etc
6363
ADD . /app
6464
RUN chown -R root:root /app
6565

66-
ENV DEIS_RELEASE 1.4.0
66+
ENV DEIS_RELEASE 1.5.0-dev

builder/image/slugbuilder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ ADD ./builder/ /tmp/builder
1212
RUN /tmp/builder/install-buildpacks
1313
ENTRYPOINT ["/tmp/builder/build.sh"]
1414

15-
ENV DEIS_RELEASE 1.4.0
15+
ENV DEIS_RELEASE 1.5.0-dev
1616

builder/image/slugrunner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ USER slug
1818
ENV HOME /app
1919
ENTRYPOINT ["/runner/init"]
2020

21-
ENV DEIS_RELEASE 1.4.0
21+
ENV DEIS_RELEASE 1.5.0-dev
2222

cache/image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ WORKDIR /app
66
CMD ["/app/bin/boot"]
77
EXPOSE 6379
88

9-
ENV DEIS_RELEASE 1.4.0
9+
ENV DEIS_RELEASE 1.5.0-dev

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
import requests
6969
from termcolor import colored
7070

71-
__version__ = '1.4.0'
71+
__version__ = '1.5.0-dev'
7272

7373
# what version of the API is this client compatible with?
7474
__api_version__ = '1.1'

client/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929

3030
setup(name='deis',
31-
version='1.4.0',
31+
version='1.5.0-dev',
3232
license=APACHE_LICENSE,
3333
description='Command-line Client for Deis, the open PaaS',
3434
author='OpDemand',

controller/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,4 @@ ADD . /app
3131
# Create static resources
3232
RUN /app/manage.py collectstatic --settings=deis.settings --noinput
3333

34-
ENV DEIS_RELEASE 1.4.0
35-
34+
ENV DEIS_RELEASE 1.5.0-dev

controller/deis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
from __future__ import absolute_import
88

9-
__version__ = '1.4.0'
9+
__version__ = '1.5.0-dev'

database/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ CMD ["/app/bin/boot"]
2222
EXPOSE 5432
2323
ADD . /app
2424

25-
ENV DEIS_RELEASE 1.4.0
25+
ENV DEIS_RELEASE 1.5.0-dev
2626

deisctl/cmd/cmd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ Usage:
626626
Options:
627627
-p --path=<target> where to save unit files [default: $HOME/.deis/units]
628628
-t --tag=<tag> git tag, branch, or SHA to use when downloading unit files
629-
[default: v1.4.0]
629+
[default: master]
630630
`
631631
// parse command-line arguments
632632
args, err := docopt.Parse(usage, argv, true, "", false)

0 commit comments

Comments
 (0)