Increment version to 0.4

This commit is contained in:
Harry Marr 2010-10-17 15:42:31 +01:00
parent 6817f3b7ba
commit 007f116bfa
2 changed files with 2 additions and 1 deletions

View File

@ -14,6 +14,7 @@ Changes in v0.4
- Added ``not`` query operator
- Added new update operators: ``pop`` and ``add_to_set``
- Added ``__raw__`` query parameter
- Added support for custom querysets
- Fixed document inheritance primary key issue
- Added support for querying by array element position
- Base class can now be defined for ``DictField``

View File

@ -12,7 +12,7 @@ __all__ = (document.__all__ + fields.__all__ + connection.__all__ +
__author__ = 'Harry Marr'
VERSION = (0, 3, 0)
VERSION = (0, 4, 0)
def get_version():
version = '%s.%s' % (VERSION[0], VERSION[1])