Skip to content

Commit

Permalink
chore(release): update version in master to v1.14.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
mboersma committed Apr 6, 2016
1 parent 032e5c3 commit 5999c6c
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion builder/rootfs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ RUN passwd -u git

COPY . /

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev
2 changes: 1 addition & 1 deletion builder/rootfs/usr/local/src/slugbuilder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ ADD ./builder/ /tmp/builder
RUN /tmp/builder/install-buildpacks
ENTRYPOINT ["/tmp/builder/build.sh"]

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev
2 changes: 1 addition & 1 deletion builder/rootfs/usr/local/src/slugrunner/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ USER slug
ENV HOME /app
ENTRYPOINT ["/runner/init"]

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev

ONBUILD RUN mkdir -p /app
ONBUILD WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion client/deis-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.13.0
1.14.0-dev
2 changes: 1 addition & 1 deletion controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ ADD . /app
# Create static resources
RUN /app/manage.py collectstatic --settings=deis.settings --noinput

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.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.13.0'
__version__ = '1.14.0-dev'
2 changes: 1 addition & 1 deletion database/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ CMD ["/app/bin/boot"]
EXPOSE 5432
ADD . /app

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev
2 changes: 1 addition & 1 deletion deisctl/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,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.13.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.13.0
1.14.0-dev
2 changes: 1 addition & 1 deletion logger/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ EXPOSE 8088

ADD . /

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev
2 changes: 1 addition & 1 deletion logspout/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ CMD ["/bin/logspout"]

ADD logspout /bin/logspout

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev
2 changes: 1 addition & 1 deletion publisher/image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ RUN apk add --no-cache curl
ADD bin/publisher /usr/local/bin/publisher
ENTRYPOINT ["/usr/local/bin/publisher"]

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev
2 changes: 1 addition & 1 deletion registry/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ RUN DOCKER_BUILD=true /app/build.sh

ADD . /app

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.0-dev
2 changes: 1 addition & 1 deletion router/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ RUN build
CMD ["boot"]
EXPOSE 80 2222 9090

ENV DEIS_RELEASE 1.13.0
ENV DEIS_RELEASE 1.14.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.13.0
ENV DEIS_RELEASE 1.14.0-dev

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

// Version identifies this Deis product revision.
const Version = "1.13.0"
const Version = "1.14.0-dev"

// API identifies the latest Deis api verison
// APIVersion identifies the latest Deis api verison
const APIVersion = "1.7"

0 comments on commit 5999c6c

Please sign in to comment.