Skip to content

Commit 3e57ba7

Browse files
authored
Merge pull request #2623 from bagerard/prepare_release_0_24_0
Prepare release 0 24 0
2 parents d0c4fb4 + 26e81cc commit 3e57ba7

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

docs/changelog.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ Changelog
77
Development
88
===========
99
- (Fill this out as you fix issues and develop your features).
10+
11+
Changes in 0.24.0
12+
=================
1013
- EnumField improvements: now ``choices`` limits the values of an enum to allow
1114
- Fix bug that prevented instance queryset from using custom queryset_class #2589
1215
- Fix deepcopy of EmbeddedDocument #2202
16+
- Introduce a base exception class for MongoEngine exceptions (MongoEngineException).
17+
Note that this doesn't concern the pymongo errors #2515
1318
- Fix error when using precision=0 with DecimalField #2535
1419
- Add support for regex and whole word text search query #2568
1520
- Add support for update aggregation pipeline #2578
@@ -45,7 +50,7 @@ Development
4550
locally.
4651

4752
Changes in 0.23.1
48-
===========
53+
=================
4954
- Bug fix: ignore LazyReferenceFields when clearing _changed_fields #2484
5055
- Improve connection doc #2481
5156

mongoengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
)
3030

3131

32-
VERSION = (0, 23, 1)
32+
VERSION = (0, 24, 0)
3333

3434

3535
def get_version():

0 commit comments

Comments
 (0)