From 356f5075da8609e7091483c5bd7b20b019f6c271 Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Mon, 21 Mar 2022 21:34:25 +0100 Subject: [PATCH] prepare release 0.24.1 --- docs/changelog.rst | 6 ++++++ mongoengine/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index fc80342e8..b3da43920 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -8,6 +8,12 @@ Development =========== - (Fill this out as you fix issues and develop your features). +Changes in 0.24.1 +================= +- Allow pymongo<5.0 to be pulled +- Don't use deprecated property for emptiness check in queryset base #2633 + + Changes in 0.24.0 ================= - EnumField improvements: now ``choices`` limits the values of an enum to allow diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index ef75e7529..14519da25 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -29,7 +29,7 @@ ) -VERSION = (0, 24, 0) +VERSION = (0, 24, 1) def get_version():