Skip to content

Commit 453196e

Browse files
authored
Version 3.9.1 (#6405)
* Version 3.9.1 * Upgrade bootstrap * Release notes for 3.9.1
1 parent 4bb9a3c commit 453196e

File tree

5 files changed

+27
-19
lines changed

5 files changed

+27
-19
lines changed

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

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

4141
## 3.9.x series
4242

43+
### 3.9.1
44+
45+
**Date**: [16th Janurary 2019][3.9.1-milestone]
46+
47+
* Resolve XSS issue in browsable API. [#6330][gh6330]
48+
* Resolve issues with composable permissions. [#6299][gh6299]
49+
* Respect `limit_choices_to` on foreign keys. [#6371][gh6371]
50+
4351
### 3.9.0
4452

4553
**Date**: [18th October 2018][3.9.0-milestone]
@@ -1135,6 +1143,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
11351143
[3.8.1-milestone]: https://github.com/encode/django-rest-framework/milestone/67?closed=1
11361144
[3.8.2-milestone]: https://github.com/encode/django-rest-framework/milestone/68?closed=1
11371145
[3.9.0-milestone]: https://github.com/encode/django-rest-framework/milestone/66?closed=1
1146+
[3.9.1-milestone]: https://github.com/encode/django-rest-framework/milestone/70?closed=1
11381147

11391148
<!-- 3.0.1 -->
11401149
[gh2013]: https://github.com/encode/django-rest-framework/issues/2013
@@ -2052,3 +2061,8 @@ For older release notes, [please see the version 2.x documentation][old-release-
20522061
[gh6233]: https://github.com/encode/django-rest-framework/issues/6233
20532062
[gh5753]: https://github.com/encode/django-rest-framework/issues/5753
20542063
[gh6229]: https://github.com/encode/django-rest-framework/issues/6229
2064+
2065+
<!-- 3.9.1 -->
2066+
[gh6330]: https://github.com/encode/django-rest-framework/issues/6330
2067+
[gh6299]: https://github.com/encode/django-rest-framework/issues/6299
2068+
[gh6371]: https://github.com/encode/django-rest-framework/issues/6371

Diff for: rest_framework/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
"""
99

1010
__title__ = 'Django REST framework'
11-
__version__ = '3.9.0'
11+
__version__ = '3.9.1'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
14-
__copyright__ = 'Copyright 2011-2018 Tom Christie'
14+
__copyright__ = 'Copyright 2011-2019 Encode OSS Ltd'
1515

1616
# Version synonym
1717
VERSION = __version__

Diff for: rest_framework/static/rest_framework/css/bootstrap-theme.min.css

+5-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: rest_framework/static/rest_framework/css/bootstrap.min.css

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: rest_framework/static/rest_framework/js/bootstrap.min.js

+3-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)