Skip to content

Commit 80320ed

Browse files
author
Carlton Gibson
authored
Version 3.7.1 Release (#5505)
* Release notes for 3.7.1 * Update version to 3.7.1
1 parent 6221124 commit 80320ed

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

Diff for: docs/topics/release-notes.md

+20
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,17 @@ You can determine your currently installed version using `pip freeze`:
4040

4141
## 3.7.x series
4242

43+
44+
### 3.7.1
45+
46+
**Date**: [16th October 2017][3.7.1-milestone]
47+
48+
* Fix Interactive documentation always uses false for boolean fields in requests [#5492][gh5492]
49+
* Improve compatibility with Django 2.0 alpha. [#5500][gh5500] [#5503][gh5503]
50+
* Improved handling of schema naming collisions [#5486][gh5486]
51+
* Added additional docs and tests around providing a default value for dotted `source` fields [#5489][gh5489]
52+
53+
4354
### 3.7.0
4455

4556
**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-
809820
[3.6.3-milestone]: https://github.com/encode/django-rest-framework/issues?q=milestone%3A%223.6.3+Release%22
810821
[3.6.4-milestone]: https://github.com/encode/django-rest-framework/issues?q=milestone%3A%223.6.4+Release%22
811822
[3.7.0-milestone]: https://github.com/encode/django-rest-framework/issues?q=milestone%3A%223.7.0+Release%22
823+
[3.7.1-milestone]: https://github.com/encode/django-rest-framework/milestone/58?closed=1
824+
812825

813826
<!-- 3.0.1 -->
814827
[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-
15271540
[gh5342]: https://github.com/encode/django-rest-framework/issues/5342
15281541
[gh5454]: https://github.com/encode/django-rest-framework/issues/5454
15291542
[gh5482]: https://github.com/encode/django-rest-framework/issues/5482
1543+
1544+
<!-- 3.7.1 -->
1545+
[gh5489]: https://github.com/encode/django-rest-framework/issues/5489
1546+
[gh5486]: https://github.com/encode/django-rest-framework/issues/5486
1547+
[gh5503]: https://github.com/encode/django-rest-framework/issues/5503
1548+
[gh5500]: https://github.com/encode/django-rest-framework/issues/5500
1549+
[gh5492]: https://github.com/encode/django-rest-framework/issues/5492

Diff for: rest_framework/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

1010
__title__ = 'Django REST framework'
11-
__version__ = '3.7.0'
11+
__version__ = '3.7.1'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
1414
__copyright__ = 'Copyright 2011-2017 Tom Christie'

0 commit comments

Comments
 (0)