From f08f749cd9bf7cd774c04e361c2dfd7fc4944549 Mon Sep 17 00:00:00 2001 From: Stefan Wojcik Date: Wed, 12 Jun 2019 11:47:31 +0200 Subject: [PATCH] Bump version to v0.18.0 --- mongoengine/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index b94efab9..4ddc2bf9 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -23,12 +23,13 @@ __all__ = (list(document.__all__) + list(fields.__all__) + list(signals.__all__) + list(errors.__all__)) -VERSION = (0, 17, 0) +VERSION = (0, 18, 0) def get_version(): - """Return the VERSION as a string, e.g. for VERSION == (0, 10, 7), - return '0.10.7'. + """Return the VERSION as a string. + + For example, if `VERSION == (0, 10, 7)`, return '0.10.7'. """ return '.'.join(map(str, VERSION))