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():