Skip to content

Commit 3d4ca8f

Browse files
committed
chore(release): update version to v0.13.0
1 parent ada467c commit 3d4ca8f

9 files changed

Lines changed: 16 additions & 21 deletions

File tree

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__ = '0.13.0-dev'
72+
__version__ = '0.13.0'
7373

7474

7575
locale.setlocale(locale.LC_ALL, '')

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

contrib/bumpver/README.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,20 @@ $ ./contrib/bumpver/bumpver -f latest 0.13.3 contrib/coreos/user-data
3131
$ ./contrib/bumpver/bumpver -f 0.13.0-dev 0.13.3 \
3232
version/version.go \
3333
client/deis.py \
34-
client/README.rst \
3534
client/setup.py \
35+
deisctl/deis-version \
3636
controller/deis/__init__.py \
37-
docs/installing_deis/register-admin-user.rst \
38-
docs/using_deis/install-client.rst
37+
tests/bin/test-latest.sh
3938
$ # update from the first semver string found
4039
$ # this type of command should now be enough to bump everything
4140
$ ./contrib/bumpver/bumpver 0.14.0 \
4241
version/version.go \
4342
client/deis.py \
44-
client/README.rst \
4543
client/setup.py \
44+
deisctl/deis-version \
4645
contrib/coreos/user-data \
4746
controller/deis/__init__.py \
48-
docs/installing_deis/register-admin-user.rst \
49-
docs/using_deis/install-client.rst
47+
tests/bin/test-latest.sh
5048
```
5149

5250
Of course, you should **always** check the changes with `git diff` before committing

contrib/coreos/user-data

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ coreos:
5050

5151
[Service]
5252
Type=oneshot
53-
ExecStart=/usr/bin/sh -c 'curl -sSL http://deis.io/deisctl/install.sh | sh -s 0.13.0-dev'
53+
ExecStart=/usr/bin/sh -c 'curl -sSL http://deis.io/deisctl/install.sh | sh -s 0.13.0'
5454
write_files:
5555
- path: /etc/deis-release
5656
content: |
57-
DEIS_RELEASE=latest
57+
DEIS_RELEASE=v0.13.0
5858
- path: /etc/motd
5959
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"
6060
- 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__ = '0.13.0-dev'
9+
__version__ = '0.13.0'

deisctl/deis-version

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

docs/contributing/releases.rst

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,25 +19,22 @@ deis repo
1919
substituting the previous release for vU.V.W and the current one for vX.Y.Z.
2020
* proofread the new CHANGELOG.md to ensure it was generated correctly
2121
* ``git add CHANGELOG.md && git commit -m "docs(CHANGELOG): update for v.X.Y.Z"``
22-
- Merge git master into release branch locally
23-
* ``git checkout release && git merge master``
2422
- Update version strings with the ``bumpver`` tool:
2523

2624
.. code-block:: console
2725
2826
$ ./contrib/bumpver/bumpver X.Y.Z \
2927
version/version.go \
3028
client/deis.py \
31-
client/README.rst \
3229
client/setup.py \
30+
deisctl/deis-version \
3331
contrib/coreos/user-data \
3432
controller/deis/__init__.py \
35-
docs/installing_deis/register-admin-user.rst \
36-
docs/using_deis/install-client.rst
33+
tests/bin/test-latest.sh
3734
3835
- Commit and push the deis/deis release and tag
3936
* ``git commit -a -m 'chore(release): update version to vX.Y.Z'``
40-
* ``git push origin release``
37+
* ``git push origin master``
4138
* ``git tag vX.Y.Z``
4239
* ``git push --tags origin vX.Y.Z``
4340
- Publish CLI to pypi.python.org

tests/bin/test-latest.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ log_phase "Installing clients"
2424

2525
# install deis CLI from http://deis.io/ website
2626
pushd $DEIS_ROOT/deisctl
27-
curl -sSL http://deis.io/deis-cli/install.sh | sh -s 0.13.0-dev
27+
curl -sSL http://deis.io/deis-cli/install.sh | sh -s 0.13.0
2828
popd
2929

3030
# install deisctl from http://deis.io/ website
3131
# installs latest unit files to $HOME/.deis/units
3232
pushd $DEIS_ROOT/client
33-
curl -sSL http://deis.io/deisctl/install.sh | sh -s 0.13.0-dev
33+
curl -sSL http://deis.io/deisctl/install.sh | sh -s 0.13.0
3434
popd
3535

3636
# ensure we use distributed unit files

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package version
22

3-
const Version = "0.13.0-dev"
3+
const Version = "0.13.0"

0 commit comments

Comments
 (0)