Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ Improvements:
* Replaced GIF spinner with a pure CSS spinner using CSS3 animations [GH-177].
* Adds Python 3.5 support [GH-179] [GH-180]

Bug Fixes:

* `manage.py version` command now returns a zero exit code [GH-182]
* `manage.py version` now returns a version that matches the GitHub releases [GH-182]

### v1.1.0 - A Hard Day's Night

BACKWARDS INCOMPATIBILITIES / NOTES:
Expand Down
2 changes: 1 addition & 1 deletion manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def resetadminpassword(username, new_password):
@manager.command
def version():
"""Returns the version of PostMaster"""
return __version__
print(__version__)


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion postmaster/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from flask_login import LoginManager
from flask_bcrypt import Bcrypt

__version__ = '1.1.0.0'
__version__ = 'v1.1.0.0'
app = Flask(__name__)

if environ.get('POSTMASTER_DEV') == 'TRUE':
Expand Down