We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 597ef8b commit e7380e3Copy full SHA for e7380e3
docs/changelog.rst
@@ -2,6 +2,13 @@
2
Changelog
3
=========
4
5
+Changes in v0.2.1
6
+=================
7
+- Added a MongoEngine backend for Django sessions
8
+- Added force_insert to Document.save()
9
+- Improved querying syntax for ListField and EmbeddedDocumentField
10
+- Added support for user-defined primary keys (_ids in MongoDB)
11
+
12
Changes in v0.2
13
===============
14
- Added Q class for building advanced queries
mongoengine/__init__.py
@@ -12,7 +12,7 @@
__author__ = 'Harry Marr'
15
-VERSION = (0, 2, 0)
+VERSION = (0, 2, 1)
16
17
def get_version():
18
version = '%s.%s' % (VERSION[0], VERSION[1])
0 commit comments