Skip to content

Commit 32b3aa5

Browse files
author
Matthew Fisher
committed
feat(version): add -dev flag for unversioned releases
This helps clear some confusion on the current version of Deis users are currently working with. [skip ci]
1 parent 0d1acdb commit 32b3aa5

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

client/deis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
import requests
6969
import yaml
7070

71-
__version__ = '0.12.0'
71+
__version__ = '0.12.0-dev'
7272

7373

7474
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.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',

controller/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.12.0'
12+
__version__ = '0.12.0-dev'

docs/contributing/releases.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ 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
3839
* ``git commit -a -m 'Updated for vX.Y.Z release.'``
3940
* ``git push origin release``
4041
* ``git tag vX.Y.Z``
@@ -51,7 +52,7 @@ github.com/deis/deis Repo
5152
publically downloadable
5253
- Switch master to upcoming release
5354
* ``git checkout master``
54-
* update __version__ fields in Python packages to *next* version
55+
* update __version__ fields in Python packages to *next* version + "-dev"
5556
* ``git commit -a -m 'Switch master to vA.B.C.'`` (**next** version)
5657
* ``git push origin master``
5758

0 commit comments

Comments
 (0)