Skip to content

Commit f08f749

Browse files
committed
Bump version to v0.18.0
1 parent a6c04f4 commit f08f749

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

mongoengine/__init__.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@
2323
list(signals.__all__) + list(errors.__all__))
2424

2525

26-
VERSION = (0, 17, 0)
26+
VERSION = (0, 18, 0)
2727

2828

2929
def get_version():
30-
"""Return the VERSION as a string, e.g. for VERSION == (0, 10, 7),
31-
return '0.10.7'.
30+
"""Return the VERSION as a string.
31+
32+
For example, if `VERSION == (0, 10, 7)`, return '0.10.7'.
3233
"""
3334
return '.'.join(map(str, VERSION))
3435

0 commit comments

Comments
 (0)