Skip to content

Commit 21b7d8f

Browse files
committed
Bump to v0.2.2
1 parent 3357b55 commit 21b7d8f

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

docs/changelog.rst

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,32 @@
22
Changelog
33
=========
44

5+
Changes in v0.2.2
6+
=================
7+
- Fixed bug that prevented indexes from being used on ``ListField``\ s
8+
- ``Document.filter()`` added as an alias to ``Document.__call__()``
9+
- ``validate()`` may now be used on ``EmbeddedDocument``\ s
10+
511
Changes in v0.2.1
612
=================
713
- 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)
14+
- Added ``force_insert`` to ``Document.save()``
15+
- Improved querying syntax for ``ListField`` and ``EmbeddedDocumentField``
16+
- Added support for user-defined primary keys (``_id`` in MongoDB)
1117

1218
Changes in v0.2
1319
===============
14-
- Added Q class for building advanced queries
15-
- Added QuerySet methods for atomic updates to documents
16-
- Fields may now specify ``unique=True`` to enforce uniqueness across a collection
20+
- Added ``Q`` class for building advanced queries
21+
- Added ``QuerySet`` methods for atomic updates to documents
22+
- Fields may now specify ``unique=True`` to enforce uniqueness across a
23+
collection
1724
- Added option for default document ordering
1825
- Fixed bug in index definitions
1926

2027
Changes in v0.1.3
2128
=================
2229
- Added Django authentication backend
23-
- Added Document.meta support for indexes, which are ensured just before
30+
- Added ``Document.meta`` support for indexes, which are ensured just before
2431
querying takes place
2532
- A few minor bugfixes
2633

@@ -30,8 +37,8 @@ Changes in v0.1.2
3037
- Query values may be processed before before being used in queries
3138
- Made connections lazy
3239
- Fixed bug in Document dictionary-style access
33-
- Added BooleanField
34-
- Added Document.reload method
40+
- Added ``BooleanField``
41+
- Added ``Document.reload()`` method
3542

3643

3744
Changes in v0.1.1

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, 1)
15+
VERSION = (0, 2, 2)
1616

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

0 commit comments

Comments
 (0)