Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/community/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,18 @@ You can determine your currently installed version using `pip show`:

---

## 3.16.x series

### 3.16.0

**Date**: 28th March 2024

A maintenance release primarily updating supported Python and Django versions.

* Adds support for Django 5.1 and the upcoming Django 5.2 LTS [#9514](https://github.com/encode/django-rest-framework/issues/9514) [#9634](https://github.com/encode/django-rest-framework/issues/9634)
* Adds support for Python 3.13. [#9527](https://github.com/encode/django-rest-framework/issues/9527)
* Drops Python 3.8 as EOL [#9670](https://github.com/encode/django-rest-framework/pull/9670)

## 3.15.x series

### 3.15.2
Expand Down
2 changes: 1 addition & 1 deletion rest_framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"""

__title__ = 'Django REST framework'
__version__ = '3.15.2'
__version__ = '3.16.0'
__author__ = 'Tom Christie'
__license__ = 'BSD 3-Clause'
__copyright__ = 'Copyright 2011-2023 Encode OSS Ltd'
Expand Down
Loading