From c8e8610b41bd4a6d6df7343676c2a94fdff0bafd Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Tue, 24 Mar 2026 14:47:12 +0000 Subject: [PATCH] Prepare bug fix release 3.17.1 --- docs/community/release-notes.md | 10 ++++++++++ rest_framework/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/community/release-notes.md b/docs/community/release-notes.md index 2ba914986e..eed8a65d81 100644 --- a/docs/community/release-notes.md +++ b/docs/community/release-notes.md @@ -38,6 +38,16 @@ You can determine your currently installed version using `pip show`: ## 3.17.x series +### 3.17.1 + +**Date**: 24th March 2026 + +#### Bug fixes + +* Fix `HTMLFormRenderer` with empty `datetime` values by [@p-r-a-v-i-n](https://github.com/p-r-a-v-i-n) in [#9928](https://github.com/encode/django-rest-framework/pull/9928) + +**Full Changelog**: [3.17.0...3.17.1](https://github.com/encode/django-rest-framework/compare/3.17.0...3.17.1) + ### 3.17.0 **Date**: 18th March 2026 diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 37d69721fb..76e645bd3d 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -8,7 +8,7 @@ """ __title__ = 'Django REST framework' -__version__ = '3.17.0' +__version__ = '3.17.1' __author__ = 'Tom Christie' __license__ = 'BSD-3-Clause' __copyright__ = 'Copyright 2011-2023 Encode OSS Ltd'