Bumped version to 0.10.1

This commit is contained in:
Omer Katz 2015-11-18 14:07:39 +02:00
parent 2c282f9550
commit 5c464c3f5a
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
Changelog Changelog
========= =========
Changes in 0.10.1 - DEV Changes in 0.10.1
======================= =======================
- Fix infinite recursion with CASCADE delete rules under specific conditions. #1046 - Fix infinite recursion with CASCADE delete rules under specific conditions. #1046
- Fix CachedReferenceField bug when loading cached docs as DBRef but failing to save them. #1047 - Fix CachedReferenceField bug when loading cached docs as DBRef but failing to save them. #1047

View File

@ -14,7 +14,7 @@ import errors
__all__ = (list(document.__all__) + fields.__all__ + connection.__all__ + __all__ = (list(document.__all__) + fields.__all__ + connection.__all__ +
list(queryset.__all__) + signals.__all__ + list(errors.__all__)) list(queryset.__all__) + signals.__all__ + list(errors.__all__))
VERSION = (0, 10, 0) VERSION = (0, 10, 1)
def get_version(): def get_version():