Skip to content

Commit 3b39d2d

Browse files
Version 3.5.1 [ci skip]
1 parent 30bf9df commit 3b39d2d

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

docs/topics/release-notes.md

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

4141
## 3.5.x series
4242

43+
### 3.5.1
44+
45+
**Date**: [21st October 2016][3.5.1-milestone]
46+
47+
* Make `rest_framework/compat.py` imports. ([#4612][gh4612], [#4608][gh4608], [#4601][gh4601])
48+
* Fix bug in schema base path generation. ([#4611][gh4611], [#4605][gh4605])
49+
* Fix broken case of ListSerializer with single item. ([#4609][gh4609], [#4606][gh4606])
50+
* Remove bare `raise` for Python 3.5 compat. ([#4600][gh4600])
51+
4352
### 3.5.0
4453

4554
**Date**: [20th October 2016][3.5.0-milestone]
@@ -605,6 +614,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
605614
[3.4.6-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.6+Release%22
606615
[3.4.7-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.7+Release%22
607616
[3.5.0-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.0+Release%22
617+
[3.5.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.5.1+Release%22
608618

609619
<!-- 3.0.1 -->
610620
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -1146,3 +1156,14 @@ For older release notes, [please see the version 2.x documentation][old-release-
11461156
[gh4465]: https://github.com/tomchristie/django-rest-framework/issues/4465
11471157
[gh4462]: https://github.com/tomchristie/django-rest-framework/issues/4462
11481158
[gh4458]: https://github.com/tomchristie/django-rest-framework/issues/4458
1159+
1160+
<!-- 3.5.1 -->
1161+
1162+
[gh4612]: https://github.com/tomchristie/django-rest-framework/issues/4612
1163+
[gh4608]: https://github.com/tomchristie/django-rest-framework/issues/4608
1164+
[gh4601]: https://github.com/tomchristie/django-rest-framework/issues/4601
1165+
[gh4611]: https://github.com/tomchristie/django-rest-framework/issues/4611
1166+
[gh4605]: https://github.com/tomchristie/django-rest-framework/issues/4605
1167+
[gh4609]: https://github.com/tomchristie/django-rest-framework/issues/4609
1168+
[gh4606]: https://github.com/tomchristie/django-rest-framework/issues/4606
1169+
[gh4600]: https://github.com/tomchristie/django-rest-framework/issues/4600

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

0 commit comments

Comments
 (0)