File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070from termcolor import colored
7171import yaml
7272
73- __version__ = '0.12.0'
73+ __version__ = '0.12.0-dev '
7474
7575
7676locale .setlocale (locale .LC_ALL , '' )
Original file line number Diff line number Diff line change 2828
2929
3030setup (name = 'deis' ,
31- version = '0.12.0' ,
31+ version = '0.12.0-dev ' ,
3232 license = APACHE_LICENSE ,
3333 description = 'Command-line Client for Deis, the open PaaS' ,
3434 author = 'OpDemand' ,
Original file line number Diff line number Diff line change 99from .celery import app # noqa
1010
1111
12- __version__ = '0.12.0'
12+ __version__ = '0.12.0-dev '
Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ github.com/deis/deis Repo
3535 * The UI for this is well-hidden: go to https://index.docker.io/builds/ and
3636 click "Edit".
3737- Commit and push the deis/deis release and tag
38+ * remove "-dev" from __version__ fields in Python packages
39+ * remove "-dev" from Version constant in version/version.go
3840 * ``git commit -a -m 'Updated for vX.Y.Z release.' ``
3941 * ``git push origin release ``
4042 * ``git tag vX.Y.Z ``
@@ -51,7 +53,8 @@ github.com/deis/deis Repo
5153 publically downloadable
5254- Switch master to upcoming release
5355 * ``git checkout master ``
54- * update __version__ fields in Python packages to *next * version
56+ * update __version__ fields in Python packages to *next * version + "-dev"
57+ * update Version constant in version/version.go to *next * version + "-dev"
5558 * ``git commit -a -m 'Switch master to vA.B.C.' `` (**next ** version)
5659 * ``git push origin master ``
5760
Original file line number Diff line number Diff line change 1+ package version
2+
3+ const Version = "0.12.0-dev"
You can’t perform that action at this time.
0 commit comments