From 65698bb0dde1c5bbe5d10c2b7ba0656cb390f817 Mon Sep 17 00:00:00 2001 From: ruscoder Date: Wed, 4 Jul 2018 14:05:32 +0300 Subject: [PATCH] Bump to 0.4.3 --- CHANGELOG.md | 3 +++ drf_writable_nested/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec7768b..400f7dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 0.4.3 +* Fix MultiValueDictKeyError for nested updates on reverse-relations (@bakerf @projkov) + ## 0.4.2 * Allow child one-to-one instances to be updated without providing PK (@karamanolev @cjroth @mathieuseguin) diff --git a/drf_writable_nested/__init__.py b/drf_writable_nested/__init__.py index 6f2bd76..21c20a2 100644 --- a/drf_writable_nested/__init__.py +++ b/drf_writable_nested/__init__.py @@ -1,5 +1,5 @@ __title__ = 'DRF writable nested' -__version__ = '0.4.2' +__version__ = '0.4.3' __author__ = 'beda.software' __license__ = 'BSD 2-Clause' __copyright__ = 'Copyright 2014-2018 beda.software'