Skip to content

Commit bc35345

Browse files
Bump version and release notes for 3.8.1 (#5916)
1 parent cba426b commit bc35345

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

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

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

4141
## 3.8.x series
4242

43+
### 3.8.1
44+
45+
**Date**: [4th April 2018][3.8.1-milestone]
46+
47+
* Use old `url_name` behavior in route decorators [#5915][gh5915]
48+
49+
For `list_route` and `detail_route` maintain the old behavior of `url_name`,
50+
basing it on the `url_path` instead of the function name.
51+
52+
4353
### 3.8.0
4454

4555
**Date**: [3rd April 2018][3.8.0-milestone]
@@ -1061,6 +1071,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
10611071
[3.7.6-milestone]: https://github.com/encode/django-rest-framework/milestone/64?closed=1
10621072
[3.7.7-milestone]: https://github.com/encode/django-rest-framework/milestone/65?closed=1
10631073
[3.8.0-milestone]: https://github.com/encode/django-rest-framework/milestone/61?closed=1
1074+
[3.8.1-milestone]: https://github.com/encode/django-rest-framework/milestone/67?closed=1
10641075

10651076
<!-- 3.0.1 -->
10661077
[gh2013]: https://github.com/encode/django-rest-framework/issues/2013
@@ -1932,3 +1943,6 @@ For older release notes, [please see the version 2.x documentation][old-release-
19321943
[gh5764]: https://github.com/encode/django-rest-framework/issues/5764
19331944
[gh5904]: https://github.com/encode/django-rest-framework/issues/5904
19341945
[gh5899]: https://github.com/encode/django-rest-framework/issues/5899
1946+
1947+
<!-- 3.8.1 -->
1948+
[gh5915]: https://github.com/encode/django-rest-framework/issues/5915

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

0 commit comments

Comments
 (0)