From 80320ed615d479e0e2ab456065d5524cbe344cc9 Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Mon, 16 Oct 2017 15:11:54 +0200 Subject: [PATCH] Version 3.7.1 Release (#5505) * Release notes for 3.7.1 * Update version to 3.7.1 --- docs/topics/release-notes.md | 20 ++++++++++++++++++++ rest_framework/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index b3f6af6f3..7549d6964 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -40,6 +40,17 @@ You can determine your currently installed version using `pip freeze`: ## 3.7.x series + +### 3.7.1 + +**Date**: [16th October 2017][3.7.1-milestone] + +* Fix Interactive documentation always uses false for boolean fields in requests [#5492][gh5492] +* Improve compatibility with Django 2.0 alpha. [#5500][gh5500] [#5503][gh5503] +* Improved handling of schema naming collisions [#5486][gh5486] +* Added additional docs and tests around providing a default value for dotted `source` fields [#5489][gh5489] + + ### 3.7.0 **Date**: [6th October 2017][3.7.0-milestone] @@ -809,6 +820,8 @@ For older release notes, [please see the version 2.x documentation][old-release- [3.6.3-milestone]: https://github.com/encode/django-rest-framework/issues?q=milestone%3A%223.6.3+Release%22 [3.6.4-milestone]: https://github.com/encode/django-rest-framework/issues?q=milestone%3A%223.6.4+Release%22 [3.7.0-milestone]: https://github.com/encode/django-rest-framework/issues?q=milestone%3A%223.7.0+Release%22 +[3.7.1-milestone]: https://github.com/encode/django-rest-framework/milestone/58?closed=1 + [gh2013]: https://github.com/encode/django-rest-framework/issues/2013 @@ -1527,3 +1540,10 @@ For older release notes, [please see the version 2.x documentation][old-release- [gh5342]: https://github.com/encode/django-rest-framework/issues/5342 [gh5454]: https://github.com/encode/django-rest-framework/issues/5454 [gh5482]: https://github.com/encode/django-rest-framework/issues/5482 + + +[gh5489]: https://github.com/encode/django-rest-framework/issues/5489 +[gh5486]: https://github.com/encode/django-rest-framework/issues/5486 +[gh5503]: https://github.com/encode/django-rest-framework/issues/5503 +[gh5500]: https://github.com/encode/django-rest-framework/issues/5500 +[gh5492]: https://github.com/encode/django-rest-framework/issues/5492 diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index bc4ddff06..45845e2e9 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -8,7 +8,7 @@ ______ _____ _____ _____ __ """ __title__ = 'Django REST framework' -__version__ = '3.7.0' +__version__ = '3.7.1' __author__ = 'Tom Christie' __license__ = 'BSD 2-Clause' __copyright__ = 'Copyright 2011-2017 Tom Christie'