Bump to v0.2.1

This commit is contained in:
Harry Marr 2010-01-11 16:14:03 +00:00
parent 597ef8b947
commit e7380e3676
2 changed files with 8 additions and 1 deletions

View File

@ -2,6 +2,13 @@
Changelog Changelog
========= =========
Changes in v0.2.1
=================
- Added a MongoEngine backend for Django sessions
- Added force_insert to Document.save()
- Improved querying syntax for ListField and EmbeddedDocumentField
- Added support for user-defined primary keys (_ids in MongoDB)
Changes in v0.2 Changes in v0.2
=============== ===============
- Added Q class for building advanced queries - Added Q class for building advanced queries

View File

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