Version 3.12.2

This commit is contained in:
Tom Christie 2020-10-13 14:17:53 +01:00
parent 95f0b0867a
commit 3799633cde
2 changed files with 9 additions and 1 deletions

View File

@ -36,6 +36,14 @@ You can determine your currently installed version using `pip show`:
## 3.12.x series
### 3.12.2
Date: 13th October 2020
* Fix issue if `rest_framework.authtoken.models` is imported, but `rest_framework.authtoken` is not in INSTALLED_APPS. [#7571]
* Ignore subclasses of BrowsableAPIRenderer in OpenAPI schema. [#7497]
* Narrower exception catching in serilizer fields, to ensure that any errors in broken `get_queryset()` methods are not masked. [#7480]
### 3.12.1
Date: 28th September 2020

View File

@ -10,7 +10,7 @@ ______ _____ _____ _____ __
import django
__title__ = 'Django REST framework'
__version__ = '3.12.1'
__version__ = '3.12.2'
__author__ = 'Tom Christie'
__license__ = 'BSD 3-Clause'
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'