bump version 0.16.1

This commit is contained in:
Erdenezul Batmunkh 2018-11-14 17:10:17 +08:00
parent 23cc9f6ff8
commit 8807c0dbef
2 changed files with 5 additions and 1 deletions

View File

@ -5,6 +5,10 @@ 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.16.1
=================
- Fix `_cls` that is not set properly in Document constructor (regression) #1950 - Fix `_cls` that is not set properly in Document constructor (regression) #1950
- Fix bug in _delta method - Update of a ListField depends on an unrelated dynamic field update #1733 - Fix bug in _delta method - Update of a ListField depends on an unrelated dynamic field update #1733
- Remove deprecated `save()` method and used `insert_one()` #1899 - Remove deprecated `save()` method and used `insert_one()` #1899

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, 0) VERSION = (0, 16, 1)
def get_version(): def get_version():