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