Skip to content

Commit 82a4799

Browse files
committed
Switch master to v0.3.1
1 parent 8fa1014 commit 82a4799

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

Berksfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"locked_version": "2.2.2"
1111
},
1212
"deis": {
13-
"locked_version": "0.3.0",
13+
"locked_version": "0.3.1",
1414
"git": "https://github.com/opdemand/deis-cookbook.git",
15-
"ref": "1da752737aea3412ee51539e23955acd5f6f618a"
15+
"ref": "77af1537ed0a6dee04c8cc455f3bfb50bf724cec"
1616
}
1717
}
1818
}

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
import requests
6666
import tempfile
6767

68-
__version__ = '0.3.0'
68+
__version__ = '0.3.1'
6969

7070

7171
class Session(requests.Session):

client/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
# pylint: disable=W0142
3434
setup(name='deis',
35-
version='0.3.0',
35+
version='0.3.1',
3636
license=APACHE_LICENSE,
3737
description='Command-line Client for Deis, the open PaaS',
3838
author='OpDemand',

deis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
from .celery import app # noqa
1010

1111

12-
__version__ = '0.3.0'
12+
__version__ = '0.3.1'

docs/contributing/releases.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Deis Repo
6868
* ``git tag vX.Y.Z``
6969
* ``git push --tags origin vX.Y.Z``
7070
- publish CLI to pypi.python.org
71-
- ``python setup.py sdist upload``
71+
- ``cd client && python setup.py sdist upload``
7272
- use testpypi.python.org first to ensure there aren't any problems
7373
- switch master to upcoming release
7474
* ``git checkout master``
@@ -85,6 +85,7 @@ Docs
8585
- summarize all work done
8686
- what's next and future directions
8787
- publish docs to http://docs.deis.io (deis.readthedocs.org)
88+
- visit readthedocs.org admin and add this release to published builds
8889
- publish docs to pythonhosted.org/deis
8990
- from the project root, run ``make -C docs clean zipfile``
9091
- zipfile will be at *docs/docs.zip*

0 commit comments

Comments
 (0)