Skip to content

Commit e7380e3

Browse files
committed
Bump to v0.2.1
1 parent 597ef8b commit e7380e3

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

docs/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
Changelog
33
=========
44

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+
512
Changes in v0.2
613
===============
714
- Added Q class for building advanced queries

mongoengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
__author__ = 'Harry Marr'
1414

15-
VERSION = (0, 2, 0)
15+
VERSION = (0, 2, 1)
1616

1717
def get_version():
1818
version = '%s.%s' % (VERSION[0], VERSION[1])

0 commit comments

Comments
 (0)