updated changelog and version tuple

This commit is contained in:
srossiter 2015-11-24 12:56:59 +00:00
parent 164e2b2678
commit fc3db7942d
2 changed files with 2 additions and 1 deletions

View File

@ -5,6 +5,7 @@ Changelog
Changes in 0.10.4 - DEV Changes in 0.10.4 - DEV
======================= =======================
- SaveConditionError is now importable from the top level package. #1165 - SaveConditionError is now importable from the top level package. #1165
- upsert_one method added. #1157
Changes in 0.10.3 Changes in 0.10.3
================= =================

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, 2) VERSION = (0, 10, 4)
def get_version(): def get_version():