From 639de87cbdc1e7821a7b0c8912e51cd418fd4ec3 Mon Sep 17 00:00:00 2001 From: Vadim Laletin Date: Tue, 29 Oct 2024 01:39:01 +0100 Subject: [PATCH] Bump to 0.7.1 --- CHANGELOG.md | 4 ++++ drf_writable_nested/__init__.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) 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__