Skip to content

Commit e52603b

Browse files
committed
ver bump to v0.14.0 + changelog/upgrade docs update
1 parent 3b88712 commit e52603b

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

docs/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Development
66
===========
77
- (Fill this out as you fix issues and develop your features).
88

9+
Changes in 0.14.0
10+
=================
11+
- BREAKING CHANGE: Removed the `coerce_types` param from `QuerySet.as_pymongo`.
12+
- POTENTIAL BREAKING CHANGE: Made EmbeddedDocument not hashable by default #1528
13+
- Improved code quality #1531, #1540, #1541, #1547
14+
915
Changes in 0.13.0
1016
=================
1117
- POTENTIAL BREAKING CHANGE: Added Unicode support to the `EmailField`, see

docs/upgrade.rst

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

9+
0.14.0
10+
******
11+
This release includes a few bug fixes and another significant code cleanup.
12+
The most important change is that `QuerySet.as_pymongo` no longer supports a
13+
`coerce_types` mode. If you used it in the past, a) please let us know of your
14+
use case, b) you'll need to override `as_pymongo` to get the desired outcome.
15+
16+
This release also makes the EmbeddedDocument not hashable by default. If you
17+
use embedded documents in sets or dictionaries, you might have to override
18+
`__hash__` and implement a hashing logic specific to your use case. See #1528
19+
for the reason behind this change.
20+
921
0.13.0
1022
******
1123
This release adds Unicode support to the `EmailField` and changes its

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, 13, 0)
26+
VERSION = (0, 14, 0)
2727

2828

2929
def get_version():

0 commit comments

Comments
 (0)