Skip to content

Commit fb802c0

Browse files
Update version and notes for 3.8.2 release. (#5923)
1 parent 42eb5a4 commit fb802c0

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

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

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

4141
## 3.8.x series
4242

43+
### 3.8.2
44+
45+
**Date**: [6th April 2018][3.8.2-milestone]
46+
47+
* Fix `read_only` + `default` `unique_together` validation. [#5922][gh5922]
48+
* authtoken.views import coreapi from rest_framework.compat, not directly. [#5921][gh5921]
49+
* Docs: Add missing argument 'detail' to Route [#5920][gh5920]
50+
51+
4352
### 3.8.1
4453

4554
**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-
10721081
[3.7.7-milestone]: https://github.com/encode/django-rest-framework/milestone/65?closed=1
10731082
[3.8.0-milestone]: https://github.com/encode/django-rest-framework/milestone/61?closed=1
10741083
[3.8.1-milestone]: https://github.com/encode/django-rest-framework/milestone/67?closed=1
1084+
[3.8.2-milestone]: https://github.com/encode/django-rest-framework/milestone/68?closed=1
10751085

10761086
<!-- 3.0.1 -->
10771087
[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-
19461956

19471957
<!-- 3.8.1 -->
19481958
[gh5915]: https://github.com/encode/django-rest-framework/issues/5915
1959+
1960+
<!-- 3.8.2 -->
1961+
[gh5922]: https://github.com/encode/django-rest-framework/issues/5922
1962+
[gh5921]: https://github.com/encode/django-rest-framework/issues/5921
1963+
[gh5920]: https://github.com/encode/django-rest-framework/issues/5920

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.8.1'
11+
__version__ = '3.8.2'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
1414
__copyright__ = 'Copyright 2011-2018 Tom Christie'

0 commit comments

Comments
 (0)