Skip to content

Commit ea60872

Browse files
committed
Version 3.5.3 [ci skip]
1 parent 8d72535 commit ea60872

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

docs/topics/release-notes.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ You can determine your currently installed version using `pip freeze`:
4040

4141
## 3.5.x series
4242

43+
### 3.5.3
44+
45+
**Date**: [7th November 2016][3.5.3-milestone]
46+
47+
* Don't raise incorrect FilterSet deprecation warnings. ([#4660][gh4660], [#4643][gh4643], [#4644][gh4644])
48+
* Schema generation should not raise 404 when a view permission class does. ([#4645][gh4645], [#4646][gh4646])
49+
* Add `autofocus` support for input controls. ([#4650][gh4650])
50+
4351
### 3.5.2
4452

4553
**Date**: [1st November 2016][3.5.2-milestone]
@@ -630,6 +638,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
630638
[3.5.0-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.0+Release%22
631639
[3.5.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.1+Release%22
632640
[3.5.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.2+Release%22
641+
[3.5.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.3+Release%22
633642

634643
<!-- 3.0.1 -->
635644
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -1198,3 +1207,12 @@ For older release notes, [please see the version 2.x documentation][old-release-
11981207
[gh4620]: https://github.com/tomchristie/django-rest-framework/issues/4620
11991208
[gh4628]: https://github.com/tomchristie/django-rest-framework/issues/4628
12001209
[gh4639]: https://github.com/tomchristie/django-rest-framework/issues/4639
1210+
1211+
<!-- 3.5.3 -->
1212+
1213+
[gh4660]: https://github.com/tomchristie/django-rest-framework/issues/4660
1214+
[gh4643]: https://github.com/tomchristie/django-rest-framework/issues/4643
1215+
[gh4644]: https://github.com/tomchristie/django-rest-framework/issues/4644
1216+
[gh4645]: https://github.com/tomchristie/django-rest-framework/issues/4645
1217+
[gh4646]: https://github.com/tomchristie/django-rest-framework/issues/4646
1218+
[gh4650]: https://github.com/tomchristie/django-rest-framework/issues/4650

rest_framework/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"""
99

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

0 commit comments

Comments
 (0)