From fb802c091084e2e02eade7813174b18178c1f3a3 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Fri, 6 Apr 2018 15:41:11 +0200 Subject: [PATCH] Update version and notes for 3.8.2 release. (#5923) --- docs/topics/release-notes.md | 15 +++++++++++++++ rest_framework/__init__.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index a82f961f7..2acf55762 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -40,6 +40,15 @@ You can determine your currently installed version using `pip show`: ## 3.8.x series +### 3.8.2 + +**Date**: [6th April 2018][3.8.2-milestone] + +* Fix `read_only` + `default` `unique_together` validation. [#5922][gh5922] +* authtoken.views import coreapi from rest_framework.compat, not directly. [#5921][gh5921] +* Docs: Add missing argument 'detail' to Route [#5920][gh5920] + + ### 3.8.1 **Date**: [4th April 2018][3.8.1-milestone] @@ -1072,6 +1081,7 @@ For older release notes, [please see the version 2.x documentation][old-release- [3.7.7-milestone]: https://github.com/encode/django-rest-framework/milestone/65?closed=1 [3.8.0-milestone]: https://github.com/encode/django-rest-framework/milestone/61?closed=1 [3.8.1-milestone]: https://github.com/encode/django-rest-framework/milestone/67?closed=1 +[3.8.2-milestone]: https://github.com/encode/django-rest-framework/milestone/68?closed=1 [gh2013]: https://github.com/encode/django-rest-framework/issues/2013 @@ -1946,3 +1956,8 @@ For older release notes, [please see the version 2.x documentation][old-release- [gh5915]: https://github.com/encode/django-rest-framework/issues/5915 + + +[gh5922]: https://github.com/encode/django-rest-framework/issues/5922 +[gh5921]: https://github.com/encode/django-rest-framework/issues/5921 +[gh5920]: https://github.com/encode/django-rest-framework/issues/5920 diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 923adf33b..fa92ab801 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -8,7 +8,7 @@ ______ _____ _____ _____ __ """ __title__ = 'Django REST framework' -__version__ = '3.8.1' +__version__ = '3.8.2' __author__ = 'Tom Christie' __license__ = 'BSD 2-Clause' __copyright__ = 'Copyright 2011-2018 Tom Christie'