diff --git a/CHANGELOG.md b/CHANGELOG.md index debbee0..8a94c2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 0.6.3 +* Support django 3.2 and python 3.9 #142 +* Make nested object deletion extensible #143 (@kavdev) +* Support extended validator with message and other props for UniqueFieldsMixin (@starryrbs) + ## 0.6.2 * Fix: Refresh from DB when updating nested object #122 (@pcarn) * Fix: UniqueFieldsMixin validation optional for partial update #117 (@robinchow) diff --git a/README.md b/README.md index a4c5094..5ee2973 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ The following relations are supported: Requirements ============ -- Python (3.5, 3.6, 3.7, 3.8) -- Django (2.2, 3.0, 3.1) +- Python (3.5, 3.6, 3.7, 3.8, 3.9) +- Django (2.2, 3.0, 3.1, 3.2) - djangorestframework (3.8+) Installation diff --git a/drf_writable_nested/__init__.py b/drf_writable_nested/__init__.py index 85d4c88..ca0b55c 100644 --- a/drf_writable_nested/__init__.py +++ b/drf_writable_nested/__init__.py @@ -1,5 +1,5 @@ __title__ = 'DRF writable nested' -__version__ = '0.6.2' +__version__ = '0.6.3' __author__ = 'beda.software' __license__ = 'BSD 2-Clause' __copyright__ = 'Copyright 2014-2020 beda.software'