From ee7d370751dd93ac80cd2084f0269d377e1d79bd Mon Sep 17 00:00:00 2001 From: Ross Lawley Date: Fri, 9 Sep 2011 05:52:43 -0700 Subject: [PATCH] Bumped the version --- docs/conf.py | 2 +- mongoengine/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 2541f49a..03ba047f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -38,7 +38,7 @@ master_doc = 'index' # General information about the project. 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 # |version| and |release|, also used in various other places throughout the diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index de635f96..0d271783 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -14,7 +14,8 @@ __all__ = (document.__all__ + fields.__all__ + connection.__all__ + __author__ = 'Harry Marr' -VERSION = (0, 4, 0) +VERSION = (0, 4, 1) + def get_version(): version = '%s.%s' % (VERSION[0], VERSION[1]) @@ -23,4 +24,3 @@ def get_version(): return version __version__ = get_version() -