Merge pull request #2447 from bagerard/_changelog_0_22_0

prepare 0.22.0
This commit is contained in:
Bastien Gérard 2020-12-14 22:49:09 +01:00 committed by GitHub
commit bc0e04d833
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -6,8 +6,12 @@ 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.22.0
=================
- Fix LazyReferenceField dereferencing in embedded documents #2426 - Fix LazyReferenceField dereferencing in embedded documents #2426
- Fix regarding the recent use of Cursor.__spec in .count() that was interfering with mongomock #2425 - Fix regarding the recent use of Cursor.__spec in .count() that was interfering with mongomock #2425
- Drop support for Python 3.5 by introducing f-strings in the codebase
Changes in 0.21.0 Changes in 0.21.0
================= =================

View File

@ -28,7 +28,7 @@ __all__ = (
) )
VERSION = (0, 21, 0) VERSION = (0, 22, 0)
def get_version(): def get_version():