Skip to content

Commit 3db9d58

Browse files
authored
Merge pull request MongoEngine#2319 from bagerard/prepare_0_20_0
Bump version to 0.20.0 and update CHANGELOG accordingly
2 parents 130e9c5 + 3fbe9c3 commit 3db9d58

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/changelog.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Changelog
66
Development
77
===========
88
- (Fill this out as you fix issues and develop your features).
9+
10+
Changes in 0.20.0
11+
=================
912
- ATTENTION: Drop support for Python2
1013
- Add Mongo 4.0 to Travis
1114
- Fix error when setting a string as a ComplexDateTimeField #2253
@@ -14,12 +17,12 @@ Development
1417
- Fixed a bug causing inaccurate query results, while combining ``__raw__`` and regular filters for the same field #2264
1518
- Add support for the `elemMatch` projection operator in .fields() (e.g BlogPost.objects.fields(elemMatch__comments="test")) #2267
1619
- DictField validate failed without default connection (bug introduced in 0.19.0) #2239
17-
- Remove methods deprecated years ago:
20+
- Remove methods that were deprecated years ago:
1821
- name parameter in Field constructor e.g `StringField(name="...")`, was replaced by db_field
1922
- Queryset.slave_okay() was deprecated since pymongo3
2023
- dropDups was dropped with MongoDB3
2124
- ``Queryset._ensure_indexes`` and ``Queryset.ensure_indexes``, the right method to use is ``Document.ensure_indexes``
22-
- Added pre-commit #2212
25+
- Added pre-commit for development/CI #2212
2326
- Renamed requirements-lint.txt to requirements-dev.txt #2212
2427
- Support for setting ReadConcern #2255
2528

mongoengine/__init__.py

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

3030

31-
VERSION = (0, 19, 1)
31+
VERSION = (0, 20, 0)
3232

3333

3434
def get_version():

0 commit comments

Comments
 (0)