Skip to content

Commit 888a6da

Browse files
committed
update the changelog and bump the version to v0.12.0
1 parent 972ac73 commit 888a6da

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

docs/changelog.rst

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,21 @@ Changelog
55
Development
66
===========
77
- (Fill this out as you fix issues and develop your features).
8-
- Fixed using sets in field choices #1481
8+
9+
Changes in 0.12.0
10+
=================
911
- POTENTIAL BREAKING CHANGE: Fixed limit/skip/hint/batch_size chaining #1476
1012
- POTENTIAL BREAKING CHANGE: Changed a public `QuerySet.clone_into` method to a private `QuerySet._clone_into` #1476
1113
- Fixed connecting to a replica set with PyMongo 2.x #1436
14+
- Fixed using sets in field choices #1481
15+
- Fixed deleting items from a `ListField` #1318
1216
- Fixed an obscure error message when filtering by `field__in=non_iterable`. #1237
17+
- Fixed behavior of a `dec` update operator #1450
18+
- Added a `rename` update operator #1454
19+
- Added validation for the `db_field` parameter #1448
20+
- Fixed the error message displayed when querying an `EmbeddedDocumentField` by an invalid value #1440
21+
- Fixed the error message displayed when validating unicode URLs #1486
22+
- Raise an error when trying to save an abstract document #1449
1323

1424
Changes in 0.11.0
1525
=================

docs/upgrade.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ Development
66
***********
77
(Fill this out whenever you introduce breaking changes to MongoEngine)
88

9+
10+
0.12.0
11+
******
912
This release includes various fixes for the `BaseQuerySet` methods and how they
1013
are chained together. Since version 0.10.1 applying limit/skip/hint/batch_size
1114
to an already-existing queryset wouldn't modify the underlying PyMongo cursor.

mongoengine/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
list(signals.__all__) + list(errors.__all__))
2424

2525

26-
VERSION = (0, 11, 0)
26+
VERSION = (0, 12, 0)
2727

2828

2929
def get_version():

0 commit comments

Comments
 (0)