Skip to content

Commit 9b77f0f

Browse files
committed
chore(release): update version in master to v1.4.0-dev
1 parent 1a9ec28 commit 9b77f0f

19 files changed

Lines changed: 20 additions & 20 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.3.0
66+
ENV DEIS_RELEASE 1.4.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.3.0
15+
ENV DEIS_RELEASE 1.4.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.3.0
21+
ENV DEIS_RELEASE 1.4.0-dev
2222

cache/Dockerfile

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

10-
ENV DEIS_RELEASE 1.3.0
10+
ENV DEIS_RELEASE 1.4.0-dev
1111

client/deis.py

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

72-
__version__ = '1.3.0'
72+
__version__ = '1.4.0-dev'
7373

7474
# what version of the API is this client compatible with?
7575
__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.3.0',
31+
version='1.4.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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ ADD . /app
3131
# Create static resources
3232
RUN /app/manage.py collectstatic --settings=deis.settings --noinput
3333

34-
ENV DEIS_RELEASE 1.3.0
34+
ENV DEIS_RELEASE 1.4.0-dev
3535

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.3.0'
9+
__version__ = '1.4.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.3.0
25+
ENV DEIS_RELEASE 1.4.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.3.0]
629+
[default: master]
630630
`
631631
// parse command-line arguments
632632
args, err := docopt.Parse(usage, argv, true, "", false)

0 commit comments

Comments
 (0)