Bumped the version

This commit is contained in:
Ross Lawley 2011-09-09 05:52:43 -07:00
parent a6449a7b2c
commit ee7d370751
2 changed files with 3 additions and 3 deletions

View File

@ -38,7 +38,7 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'MongoEngine' project = u'MongoEngine'
copyright = u'2009-2010, Harry Marr' copyright = u'2009-2011, Harry Marr'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the

View File

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