Skip to content

Commit b6d6af4

Browse files
committed
chore(release): update version to v1.5.0
1 parent a8d4f99 commit b6d6af4

26 files changed

Lines changed: 214 additions & 61 deletions

File tree

CHANGELOG.md

Lines changed: 153 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Deis (pronounced DAY-iss) is an open source PaaS that makes it easy to deploy and manage applications on your own servers. Deis builds upon [Docker](http://docker.io/) and [CoreOS](http://coreos.com) to provide a lightweight PaaS with a [Heroku-inspired](http://heroku.com) workflow.
44

55
[![Build Status](https://ci.deis.io/buildStatus/icon?job=test-acceptance)](https://ci.deis.io/job/test-acceptance/)
6-
[![Current Release](http://img.shields.io/badge/release-v1.4.1-1eb0fc.svg)](https://github.com/deis/deis/releases/tag/v1.4.1)
6+
[![Current Release](http://img.shields.io/badge/release-v1.5.0-1eb0fc.svg)](https://github.com/deis/deis/releases/tag/v1.5.0)
77
[![Latest Docs](http://img.shields.io/badge/docs-latest-fc1e5e.svg)](http://docs.deis.io/en/latest/)
88

99
![Deis Graphic](https://s3-us-west-2.amazonaws.com/deis-images/deis-graphic.png)

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.5.0-dev
66+
ENV DEIS_RELEASE 1.5.0

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.5.0-dev
15+
ENV DEIS_RELEASE 1.5.0
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.5.0-dev
21+
ENV DEIS_RELEASE 1.5.0
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.5.0-dev
9+
ENV DEIS_RELEASE 1.5.0

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
from tabulate import tabulate
7373
from termcolor import colored
7474

75-
__version__ = '1.5.0-dev'
75+
__version__ = '1.5.0'
7676

7777
# what version of the API is this client compatible with?
7878
__api_version__ = '1.2'

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.5.0-dev',
31+
version='1.5.0',
3232
license=APACHE_LICENSE,
3333
description='Command-line Client for Deis, the open PaaS',
3434
author='OpDemand',

contrib/coreos/user-data.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ coreos:
6363

6464
[Service]
6565
Type=oneshot
66-
ExecStart=/usr/bin/sh -c 'curl -sSL --retry 5 --retry-delay 2 http://deis.io/deisctl/install.sh | sh -s 1.4.1'
66+
ExecStart=/usr/bin/sh -c 'curl -sSL --retry 5 --retry-delay 2 http://deis.io/deisctl/install.sh | sh -s 1.5.0'
6767
- name: ntpdate.service
6868
command: start
6969
- name: timedate-ntp-synchronization.service
@@ -112,7 +112,7 @@ coreos:
112112
write_files:
113113
- path: /etc/deis-release
114114
content: |
115-
DEIS_RELEASE=v1.4.1
115+
DEIS_RELEASE=v1.5.0
116116
- path: /etc/motd
117117
content: " \e[31m* * \e[34m* \e[32m***** \e[39mddddd eeeeeee iiiiiii ssss\n\e[31m* * \e[34m* * \e[32m* * \e[39md d e e i s s\n \e[31m* * \e[34m***** \e[32m***** \e[39md d e i s\n\e[32m***** \e[31m* * \e[34m* \e[39md d e i s\n\e[32m* * \e[31m* * \e[34m* * \e[39md d eee i sss\n\e[32m***** \e[31m* * \e[34m***** \e[39md d e i s\n \e[34m* \e[32m***** \e[31m* * \e[39md d e i s\n \e[34m* * \e[32m* * \e[31m* * \e[39md d e e i s s\n\e[34m***** \e[32m***** \e[31m* * \e[39mddddd eeeeeee iiiiiii ssss\n\n\e[39mWelcome to Deis\t\t\tPowered by Core\e[38;5;45mO\e[38;5;206mS\e[39m\n"
118118
- path: /etc/profile.d/nse-function.sh

controller/Dockerfile

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

34-
ENV DEIS_RELEASE 1.5.0-dev
34+
ENV DEIS_RELEASE 1.5.0

0 commit comments

Comments
 (0)