Skip to content

Commit

Permalink
bump version to v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wojcikstefan committed Feb 16, 2017
1 parent c8ec879 commit c1a78b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Changelog
Development
===========
- (Fill this out as you fix issues and develop features).

Changes in 0.9.1
================
- Fixed setup.py for various platforms (#298).
- Added Flask-WTF v0.14 support (#294).

Expand Down
6 changes: 3 additions & 3 deletions flask_mongoengine/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
from .wtf import WtfBaseField


VERSION = (0, 9, 0)
VERSION = (0, 9, 1)


def get_version():
"""Return the VERSION as a string, e.g. for VERSION == (0, 9, 0),
return '0.9.0'.
"""Return the VERSION as a string, e.g. for VERSION == (0, 9, 1),
return '0.9.1'.
"""
return '.'.join(map(str, VERSION))

Expand Down

0 comments on commit c1a78b7

Please sign in to comment.