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'