diff --git a/CHANGELOG.md b/CHANGELOG.md index f2001f3..1d184fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.3.0 +* Fix problem with deletion related M2M objects when removing the relation +(Note: you should manually delete m2m instances on update after this version) + ## 0.2.1 * Fix problem for updating models with UUID primary key field (@kseniyashaydurova) * Fix problem with raising Protected Error in deletion (@kseniyashaydurova) @@ -16,7 +20,7 @@ ## 0.1.2 * Fix problem with null values for reverse relations -## 0.1.0 +## 0.1.0 * Remove unneeded functional * Cover with tests diff --git a/drf_writable_nested/__init__.py b/drf_writable_nested/__init__.py index f44cefd..89e86cb 100644 --- a/drf_writable_nested/__init__.py +++ b/drf_writable_nested/__init__.py @@ -1,5 +1,5 @@ __title__ = 'DRF writable nested' -__version__ = '0.2.1' +__version__ = '0.3.0' __author__ = 'beda.software' __license__ = 'BSD 2-Clause' __copyright__ = 'Copyright 2014-2017 beda.software'