From 7b4245c91c6bd55b70e37cf58272e08c60b0b678 Mon Sep 17 00:00:00 2001 From: Erdenezul Batmunkh Date: Sun, 10 Mar 2019 21:16:58 +0800 Subject: [PATCH] Bump version 0.17.0 --- docs/changelog.rst | 3 +++ mongoengine/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index c87fd1e9..97da8d10 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,6 +5,9 @@ Changelog Development =========== - (Fill this out as you fix issues and develop your features). + +Changes in 0.17.0 +================= - Fix .only() working improperly after using .count() of the same instance of QuerySet - POTENTIAL BREAKING CHANGE: All result fields are now passed, including internal fields (_cls, _id) when using `QuerySet.as_pymongo` #1976 - Document a BREAKING CHANGE introduced in 0.15.3 and not reported at that time (#1995) diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index 2b78d4e6..b94efab9 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -23,7 +23,7 @@ __all__ = (list(document.__all__) + list(fields.__all__) + list(signals.__all__) + list(errors.__all__)) -VERSION = (0, 16, 3) +VERSION = (0, 17, 0) def get_version():