bump version and update changelog

This commit is contained in:
collerek
2020-11-27 18:53:17 +01:00
parent 0ed4ef4833
commit 7b97510f88
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
# 0.5.3
* Fixed bug in `Model.dict()` method that was ignoring exclude parameter and not include dictionary argument.
# 0.5.2 # 0.5.2
* Added `prefetch_related` method to load subsequent models in separate queries. * Added `prefetch_related` method to load subsequent models in separate queries.

View File

@ -30,7 +30,7 @@ class UndefinedType: # pragma no cover
Undefined = UndefinedType() Undefined = UndefinedType()
__version__ = "0.5.2" __version__ = "0.5.3"
__all__ = [ __all__ = [
"Integer", "Integer",
"BigInteger", "BigInteger",