Skip to content

Commit

Permalink
chore(release): update version in master to v1.5.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Mar 3, 2015
1 parent 7b3c3b6 commit cca9843
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 19 deletions.
2 changes: 1 addition & 1 deletion builder/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ ADD etc /etc
ADD . /app
RUN chown -R root:root /app

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev
2 changes: 1 addition & 1 deletion builder/image/slugbuilder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ ADD ./builder/ /tmp/builder
RUN /tmp/builder/install-buildpacks
ENTRYPOINT ["/tmp/builder/build.sh"]

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion builder/image/slugrunner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ USER slug
ENV HOME /app
ENTRYPOINT ["/runner/init"]

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion cache/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ WORKDIR /app
CMD ["/app/bin/boot"]
EXPOSE 6379

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev
2 changes: 1 addition & 1 deletion client/deis.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
import requests
from termcolor import colored

__version__ = '1.4.0'
__version__ = '1.5.0-dev'

# what version of the API is this client compatible with?
__api_version__ = '1.1'
Expand Down
2 changes: 1 addition & 1 deletion client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@


setup(name='deis',
version='1.4.0',
version='1.5.0-dev',
license=APACHE_LICENSE,
description='Command-line Client for Deis, the open PaaS',
author='OpDemand',
Expand Down
3 changes: 1 addition & 2 deletions controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,4 @@ ADD . /app
# Create static resources
RUN /app/manage.py collectstatic --settings=deis.settings --noinput

ENV DEIS_RELEASE 1.4.0

ENV DEIS_RELEASE 1.5.0-dev
2 changes: 1 addition & 1 deletion controller/deis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

from __future__ import absolute_import

__version__ = '1.4.0'
__version__ = '1.5.0-dev'
2 changes: 1 addition & 1 deletion database/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ CMD ["/app/bin/boot"]
EXPOSE 5432
ADD . /app

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion deisctl/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ Usage:
Options:
-p --path=<target> where to save unit files [default: $HOME/.deis/units]
-t --tag=<tag> git tag, branch, or SHA to use when downloading unit files
[default: v1.4.0]
[default: master]
`
// parse command-line arguments
args, err := docopt.Parse(usage, argv, true, "", false)
Expand Down
2 changes: 1 addition & 1 deletion deisctl/deis-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.0
1.5.0-dev
2 changes: 1 addition & 1 deletion logger/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ EXPOSE 514

ADD . /

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion logspout/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ CMD ["/bin/logspout"]

ADD logspout /bin/logspout

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion publisher/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ FROM ubuntu-debootstrap:14.04
ADD bin/publisher /usr/local/bin/publisher
ENTRYPOINT ["/usr/local/bin/publisher"]

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion registry/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ RUN DOCKER_BUILD=true /app/build.sh

ADD . /app

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion router/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ ADD nginx.tgz /opt/nginx

RUN rm nginx.tgz

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion store/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ RUN DOCKER_BUILD=true /tmp/build.sh
# Add shared confd configuration
ADD . /app

ENV DEIS_RELEASE 1.4.0
ENV DEIS_RELEASE 1.5.0-dev

2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package version

// Version identifies this Deis product revision.
const Version = "1.4.0"
const Version = "1.5.0-dev"

0 comments on commit cca9843

Please sign in to comment.