From f86496b545579e222df2bb85fe9e30dee58808c3 Mon Sep 17 00:00:00 2001 From: Harry Marr Date: Wed, 6 Jan 2010 03:23:02 +0000 Subject: [PATCH] Bump to v0.1.2 --- docs/changelog.rst | 9 +++++++++ docs/conf.py | 2 +- mongoengine/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 9a89ec17..96f7cbf9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog ========= +Changes in v0.1.2 +================= +- Query values may be processed before before being used in queries +- Made connections lazy +- Fixed bug in Document dictionary-style access +- Added BooleanField +- Added Document.reload method + + Changes in v0.1.1 ================= - Documents may now use capped collections diff --git a/docs/conf.py b/docs/conf.py index bc6725d2..a40a25ff 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ sys.path.append(os.path.abspath('..')) extensions = ['sphinx.ext.autodoc'] # Add any paths that contain templates here, relative to this directory. -templates_path = ['.templates'] +templates_path = ['_templates'] # The suffix of source filenames. source_suffix = '.rst' diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index cf20d9ca..7a1134f7 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -12,7 +12,7 @@ __all__ = (document.__all__ + fields.__all__ + connection.__all__ + __author__ = 'Harry Marr' -VERSION = (0, 1, 1) +VERSION = (0, 1, 2) def get_version(): version = '%s.%s' % (VERSION[0], VERSION[1])