From 63c913518443ae82a32ea6d89b1297bcbb662084 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastien=20G=C3=A9rard?= Date: Mon, 17 Jun 2019 22:36:54 +0200 Subject: [PATCH 1/2] Bump version number and update changelog for 0.18.1 --- docs/changelog.rst | 7 ++++++- mongoengine/__init__.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index cdbb430e..3281b7b7 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,9 +5,14 @@ Changelog Development =========== -- Add Python 3.7 in travis #2058 - (Fill this out as you fix issues and develop your features). +Changes in 0.18.1 +================= +- Fix a bug introduced in 0.18.0 which was causing `.save()` to update all the fields + instead of updating only the modified fields. This gug only occurs when using custom pk #2082 +- Add Python 3.7 in travis #2058 + Changes in 0.18.0 ================= - Drop support for EOL'd MongoDB v2.6, v3.0, and v3.2. diff --git a/mongoengine/__init__.py b/mongoengine/__init__.py index 4ddc2bf9..d6a50766 100644 --- a/mongoengine/__init__.py +++ b/mongoengine/__init__.py @@ -23,7 +23,7 @@ __all__ = (list(document.__all__) + list(fields.__all__) + list(signals.__all__) + list(errors.__all__)) -VERSION = (0, 18, 0) +VERSION = (0, 18, 1) def get_version(): From ca230d28b4f77825474d50e7421f4c5ca8dcb5b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastien=20G=C3=A9rard?= Date: Tue, 18 Jun 2019 22:18:10 +0200 Subject: [PATCH 2/2] fix typo in changelog --- docs/changelog.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 3281b7b7..e82cc124 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -10,7 +10,7 @@ Development Changes in 0.18.1 ================= - Fix a bug introduced in 0.18.0 which was causing `.save()` to update all the fields - instead of updating only the modified fields. This gug only occurs when using custom pk #2082 + instead of updating only the modified fields. This bug only occurs when using custom pk #2082 - Add Python 3.7 in travis #2058 Changes in 0.18.0