Skip to content

Commit 83c37ed

Browse files
committed
chore(release): update version to v1.1.0
1 parent 63e5e54 commit 83c37ed

15 files changed

Lines changed: 176 additions & 59 deletions

File tree

CHANGELOG.md

Lines changed: 126 additions & 10 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](http://ci.deis.io/buildStatus/icon?job=test-master)](http://ci.deis.io/job/test-master/)
6-
[![Current Release](http://img.shields.io/badge/release-v1.0.2-1eb0fc.svg)](https://github.com/deis/deis/releases/tag/v1.0.2)
6+
[![Current Release](http://img.shields.io/badge/release-v1.1.0-1eb0fc.svg)](https://github.com/deis/deis/releases/tag/v1.1.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)

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.1.0-dev'
72+
__version__ = '1.1.0'
7373

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

client/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828

2929

3030
setup(name='deis',
31-
version='1.0.2',
31+
version='1.1.0',
3232
license=APACHE_LICENSE,
3333
description='Command-line Client for Deis, the open PaaS',
3434
author='OpDemand',
3535
author_email='info@opdemand.com',
3636
url='https://github.com/deis/deis',
3737
keywords=[
38-
'opdemand', 'deis', 'paas', 'cloud', 'chef', 'docker', 'heroku',
38+
'opdemand', 'deis', 'paas', 'cloud', 'coreos', 'docker', 'heroku',
3939
'aws', 'ec2', 'rackspace', 'digitalocean', 'gce'
4040
],
4141
classifiers=[
42-
'Development Status :: 4 - Beta',
42+
'Development Status :: 5 - Production/Stable',
4343
'Environment :: Console',
4444
'Intended Audience :: Developers',
4545
'Intended Audience :: Information Technology',

contrib/coreos/user-data.example

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

4141
[Service]
4242
Type=oneshot
43-
ExecStart=/usr/bin/sh -c 'curl -sSL --retry 5 --retry-delay 2 http://deis.io/deisctl/install.sh | sh -s 1.0.2'
43+
ExecStart=/usr/bin/sh -c 'curl -sSL --retry 5 --retry-delay 2 http://deis.io/deisctl/install.sh | sh -s 1.1.0'
4444
- name: ntpdate.service
4545
command: start
4646
- name: timedate-ntp-synchronization.service
@@ -59,7 +59,7 @@ coreos:
5959
write_files:
6060
- path: /etc/deis-release
6161
content: |
62-
DEIS_RELEASE=v1.0.2
62+
DEIS_RELEASE=v1.1.0
6363
- path: /etc/motd
6464
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"
6565
- path: /etc/profile.d/nse-function.sh

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.1.0-dev'
9+
__version__ = '1.1.0'

deisctl/cmd/cmd.go

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

deisctl/deis-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.0-dev
1+
1.1.0

deisctl/deisctl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515

1616
const (
1717
// Version of deisctl client
18-
Version string = "1.1.0-dev"
18+
Version string = "1.1.0"
1919
)
2020

2121
// main exits with the return value of Command(os.Args[1:]), deferring all logic to

docs/installing_deis/install-deisctl.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ and run the latest installer:
1818
.. code-block:: console
1919
2020
$ cd ~/bin
21-
$ curl -sSL http://deis.io/deisctl/install.sh | sh -s 1.0.2
21+
$ curl -sSL http://deis.io/deisctl/install.sh | sh -s 1.1.0
2222
23-
This installs ``deisctl`` version 1.0.2 to the current directory, and downloads the matching
23+
This installs ``deisctl`` version 1.1.0 to the current directory, and downloads the matching
2424
Deis systemd unit files used to schedule the components. Link ``deisctl`` into /usr/local/bin, so
2525
it will be in your ``$PATH``:
2626

@@ -31,10 +31,10 @@ it will be in your ``$PATH``:
3131
To change installation options, save the installer directly:
3232

3333
.. image:: download-linux-brightgreen.svg
34-
:target: https://s3-us-west-2.amazonaws.com/opdemand/deisctl-1.0.2-linux-amd64.run
34+
:target: https://s3-us-west-2.amazonaws.com/opdemand/deisctl-1.1.0-linux-amd64.run
3535

3636
.. image:: download-osx-brightgreen.svg
37-
:target: https://s3-us-west-2.amazonaws.com/opdemand/deisctl-1.0.2-darwin-amd64.run
37+
:target: https://s3-us-west-2.amazonaws.com/opdemand/deisctl-1.1.0-darwin-amd64.run
3838

3939
Then run the downloaded file as a shell script. Append ``--help`` to see what options
4040
are available.

0 commit comments

Comments
 (0)