From 0a032bf6959e48b00913dd60f16e809a3a0683ed Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Sun, 20 Feb 2022 23:56:18 +0100 Subject: [PATCH 1/2] Update changelog for release --- docs/changelog.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index 77155f25c..620dc641e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -10,6 +10,8 @@ Development - EnumField improvements: now ``choices`` limits the values of an enum to allow - Fix bug that prevented instance queryset from using custom queryset_class #2589 - Fix deepcopy of EmbeddedDocument #2202 +- Introduce a base exception class for MongoEngine exceptions (MongoEngineException). + Note that this doesn't concern the pymongo errors #2515 - Fix error when using precision=0 with DecimalField #2535 - Add support for regex and whole word text search query #2568 - Add support for update aggregation pipeline #2578 From 26e81cc58cd34cf75d146eab31bd9849353d74b3 Mon Sep 17 00:00:00 2001 From: Bastien Gerard Date: Sun, 20 Feb 2022 23:57:56 +0100 Subject: [PATCH 2/2] prepare release --- docs/changelog.rst | 5 ++++- mongoengine/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 620dc641e..096ace65b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -7,6 +7,9 @@ Changelog Development =========== - (Fill this out as you fix issues and develop your features). + +Changes in 0.24.0 +================= - EnumField improvements: now ``choices`` limits the values of an enum to allow - Fix bug that prevented instance queryset from using custom queryset_class #2589 - Fix deepcopy of EmbeddedDocument #2202 @@ -47,7 +50,7 @@ Development locally. Changes in 0.23.1 -=========== +================= - Bug fix: ignore LazyReferenceFields when clearing _changed_fields #2484 - Improve connection doc #2481 diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index d316b0f14..ef75e7529 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -29,7 +29,7 @@ ) -VERSION = (0, 23, 1) +VERSION = (0, 24, 0) def get_version():