We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2abcf47 + ca230d2 commit e8dbd12Copy full SHA for e8dbd12
2 files changed
docs/changelog.rst
@@ -5,9 +5,14 @@ Changelog
5
6
Development
7
===========
8
-- Add Python 3.7 in travis #2058
9
- (Fill this out as you fix issues and develop your features).
10
+Changes in 0.18.1
11
+=================
12
+- Fix a bug introduced in 0.18.0 which was causing `.save()` to update all the fields
13
+ instead of updating only the modified fields. This bug only occurs when using custom pk #2082
14
+- Add Python 3.7 in travis #2058
15
+
16
Changes in 0.18.0
17
=================
18
- Drop support for EOL'd MongoDB v2.6, v3.0, and v3.2.
mongoengine/__init__.py
@@ -23,7 +23,7 @@
23
list(signals.__all__) + list(errors.__all__))
24
25
26
-VERSION = (0, 18, 0)
+VERSION = (0, 18, 1)
27
28
29
def get_version():
0 commit comments