From d3fd8bb15c39a7822205f9621e1317f6d59915cf Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Wed, 4 Sep 2019 12:38:23 +0100 Subject: [PATCH] Version 3.10.3 --- docs/community/release-notes.md | 20 ++++++++++++++++++++ rest_framework/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/community/release-notes.md b/docs/community/release-notes.md index e3f3820d3..a53b2d7cb 100644 --- a/docs/community/release-notes.md +++ b/docs/community/release-notes.md @@ -40,6 +40,26 @@ You can determine your currently installed version using `pip show`: ## 3.10.x series +### 3.10.3 + +**Date**: 4th September 2019 + +* TODO + +### 3.10.2 + +**Date**: 29th July 2019 + +* Various `OpenAPI` schema fixes. +* Ability to specify urlconf in include_docs_urls. + +### 3.10.1 + +**Date**: 17th July 2019 + +* Don't include autocomplete fields on TokenAuth admin, since it forces constraints on custom user models & admin. +* Require `uritemplate` for OpenAPI schema generation, but not `coreapi`. + ### 3.10.0 **Date**: [15th July 2019][3.10.0-milestone] diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 6a64c8b18..4d4225c96 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -8,7 +8,7 @@ ______ _____ _____ _____ __ """ __title__ = 'Django REST framework' -__version__ = '3.10.1' +__version__ = '3.10.3' __author__ = 'Tom Christie' __license__ = 'BSD 2-Clause' __copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'