Skip to content

Commit c1a78b7

Browse files
committed
bump version to v0.9.1
1 parent c8ec879 commit c1a78b7

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ Changelog
55
Development
66
===========
77
- (Fill this out as you fix issues and develop features).
8+
9+
Changes in 0.9.1
10+
================
811
- Fixed setup.py for various platforms (#298).
912
- Added Flask-WTF v0.14 support (#294).
1013

flask_mongoengine/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
from .wtf import WtfBaseField
1717

1818

19-
VERSION = (0, 9, 0)
19+
VERSION = (0, 9, 1)
2020

2121

2222
def get_version():
23-
"""Return the VERSION as a string, e.g. for VERSION == (0, 9, 0),
24-
return '0.9.0'.
23+
"""Return the VERSION as a string, e.g. for VERSION == (0, 9, 1),
24+
return '0.9.1'.
2525
"""
2626
return '.'.join(map(str, VERSION))
2727

0 commit comments

Comments
 (0)