Bump version 0.17.0

This commit is contained in:
Erdenezul Batmunkh 2019-03-10 21:16:58 +08:00
parent 50ffa8014e
commit 7b4245c91c
2 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,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.17.0
=================
- Fix .only() working improperly after using .count() of the same instance of QuerySet - Fix .only() working improperly after using .count() of the same instance of QuerySet
- POTENTIAL BREAKING CHANGE: All result fields are now passed, including internal fields (_cls, _id) when using `QuerySet.as_pymongo` #1976 - POTENTIAL BREAKING CHANGE: All result fields are now passed, including internal fields (_cls, _id) when using `QuerySet.as_pymongo` #1976
- Document a BREAKING CHANGE introduced in 0.15.3 and not reported at that time (#1995) - Document a BREAKING CHANGE introduced in 0.15.3 and not reported at that time (#1995)

View File

@ -23,7 +23,7 @@ __all__ = (list(document.__all__) + list(fields.__all__) +
list(signals.__all__) + list(errors.__all__)) list(signals.__all__) + list(errors.__all__))
VERSION = (0, 16, 3) VERSION = (0, 17, 0)
def get_version(): def get_version():