From dd11911ed7014677f0fcce49438504207567bb4e Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Mon, 14 Dec 2020 22:39:48 +0100 Subject: [PATCH] update changelog and bump version to 0.22.0 --- docs/changelog.rst | 4 ++++ mongoengine/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 7b52efd31..424481840 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,8 +6,12 @@ Changelog Development =========== - (Fill this out as you fix issues and develop your features). + +Changes in 0.22.0 +================= - Fix LazyReferenceField dereferencing in embedded documents #2426 - Fix regarding the recent use of Cursor.__spec in .count() that was interfering with mongomock #2425 +- Drop support for Python 3.5 by introducing f-strings in the codebase Changes in 0.21.0 ================= diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index 93b0edd07..82add8ceb 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -28,7 +28,7 @@ ) -VERSION = (0, 21, 0) +VERSION = (0, 22, 0) def get_version():