Bump to v0.1.2

This commit is contained in:
Harry Marr 2010-01-06 03:23:02 +00:00
parent 557fb19d13
commit f86496b545
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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'

View File

@ -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])