Bump version to 0.20.0 and update CHANGELOG accordingly
This commit is contained in:
		| @@ -6,6 +6,9 @@ Changelog | |||||||
| Development | Development | ||||||
| =========== | =========== | ||||||
| - (Fill this out as you fix issues and develop your features). | - (Fill this out as you fix issues and develop your features). | ||||||
|  |  | ||||||
|  | Changes in 0.20.0 | ||||||
|  | ================= | ||||||
| - ATTENTION: Drop support for Python2 | - ATTENTION: Drop support for Python2 | ||||||
| - Add Mongo 4.0 to Travis | - Add Mongo 4.0 to Travis | ||||||
| - Fix error when setting a string as a ComplexDateTimeField #2253 | - Fix error when setting a string as a ComplexDateTimeField #2253 | ||||||
| @@ -14,12 +17,12 @@ Development | |||||||
| - Fixed a bug causing inaccurate query results, while combining ``__raw__`` and regular filters for the same field #2264 | - Fixed a bug causing inaccurate query results, while combining ``__raw__`` and regular filters for the same field #2264 | ||||||
| - Add support for the `elemMatch` projection operator in .fields() (e.g BlogPost.objects.fields(elemMatch__comments="test")) #2267 | - Add support for the `elemMatch` projection operator in .fields() (e.g BlogPost.objects.fields(elemMatch__comments="test")) #2267 | ||||||
| - DictField validate failed without default connection (bug introduced in 0.19.0) #2239 | - DictField validate failed without default connection (bug introduced in 0.19.0) #2239 | ||||||
| - Remove methods deprecated years ago: | - Remove methods that were deprecated years ago: | ||||||
|     - name parameter in Field constructor e.g `StringField(name="...")`, was replaced by db_field |     - name parameter in Field constructor e.g `StringField(name="...")`, was replaced by db_field | ||||||
|     - Queryset.slave_okay() was deprecated since pymongo3 |     - Queryset.slave_okay() was deprecated since pymongo3 | ||||||
|     - dropDups was dropped with MongoDB3 |     - dropDups was dropped with MongoDB3 | ||||||
|     - ``Queryset._ensure_indexes`` and ``Queryset.ensure_indexes``, the right method to use is ``Document.ensure_indexes`` |     - ``Queryset._ensure_indexes`` and ``Queryset.ensure_indexes``, the right method to use is ``Document.ensure_indexes`` | ||||||
| - Added pre-commit #2212 | - Added pre-commit for development/CI #2212 | ||||||
| - Renamed requirements-lint.txt to requirements-dev.txt #2212 | - Renamed requirements-lint.txt to requirements-dev.txt #2212 | ||||||
|  |  | ||||||
| Changes in 0.19.1 | Changes in 0.19.1 | ||||||
|   | |||||||
| @@ -28,7 +28,7 @@ __all__ = ( | |||||||
| ) | ) | ||||||
|  |  | ||||||
|  |  | ||||||
| VERSION = (0, 19, 1) | VERSION = (0, 20, 0) | ||||||
|  |  | ||||||
|  |  | ||||||
| def get_version(): | def get_version(): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user