diff --git a/docs/changelog.rst b/docs/changelog.rst index 51f0967f..cd349793 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,7 +2,7 @@ Changelog ========= -Changes in 0.10.1 - DEV +Changes in 0.10.1 ======================= - 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 diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index 474c2154..eefaf08d 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -14,7 +14,7 @@ import errors __all__ = (list(document.__all__) + fields.__all__ + connection.__all__ + list(queryset.__all__) + signals.__all__ + list(errors.__all__)) -VERSION = (0, 10, 0) +VERSION = (0, 10, 1) def get_version():