diff --git a/CHANGELOG.md b/CHANGELOG.md index 975f088..bc0f7d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.7.1 +* Add support for Python 3.12, Django 5.0, DRF 3.15 (@browniebroke) +* Drop support for Python <3.7, Django <4.2, DRF <3.14 (@browniebroke) + ## 0.7.0 * Related objects are not deleted if they have relation with on_delete=SET_NULL/SET_DEFAULT #72 (@izimobil) diff --git a/drf_writable_nested/__init__.py b/drf_writable_nested/__init__.py index b8f7d5a..1c9dd62 100644 --- a/drf_writable_nested/__init__.py +++ b/drf_writable_nested/__init__.py @@ -1,8 +1,8 @@ __title__ = 'DRF writable nested' -__version__ = '0.7.0' +__version__ = '0.7.1' __author__ = 'beda.software' __license__ = 'BSD 2-Clause' -__copyright__ = 'Copyright 2014-2022 beda.software' +__copyright__ = 'Copyright 2014-2024 beda.software' # Version synonym VERSION = __version__