Skip to content

Commit 63342e8

Browse files
authored
Version 3.4.5 (encode#4421)
1 parent 59ca61a commit 63342e8

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

docs/topics/release-notes.md

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

4141
## 3.4.x series
4242

43+
### 3.4.5
44+
45+
**Date**: [19th August 2016][3.4.5-milestone]
46+
47+
* Improve debug error handling. ([#4416][gh4416], [#4409][gh4409])
48+
* Allow custom CSRF_HEADER_NAME setting. ([#4415][gh4415], [#4410][gh4410])
49+
* Include .action attribute on viewsets when generating schemas. ([#4408][gh4408], [#4398][gh4398])
50+
* Do not include request.FILES items in request.POST. ([#4407][gh4407])
51+
* Fix rendering of checkbox multiple. ([#4403][gh4403])
52+
* Fix docstring of Field.get_default. ([#4404][gh4404])
53+
* Replace utf8 character with its ascii counterpart in README. ([#4412][gh4412])
54+
4355
### 3.4.4
4456

4557
**Date**: [12th August 2016][3.4.4-milestone]
@@ -560,6 +572,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
560572
[3.4.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.2+Release%22
561573
[3.4.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.3+Release%22
562574
[3.4.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.4+Release%22
575+
[3.4.5-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.4.5+Release%22
563576

564577
<!-- 3.0.1 -->
565578
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -1065,3 +1078,15 @@ For older release notes, [please see the version 2.x documentation][old-release-
10651078
[gh4392]: https://github.com/tomchristie/django-rest-framework/issues/4392
10661079
[gh4393]: https://github.com/tomchristie/django-rest-framework/issues/4393
10671080
[gh4394]: https://github.com/tomchristie/django-rest-framework/issues/4394
1081+
1082+
<!-- 3.4.5 -->
1083+
[gh4416]: https://github.com/tomchristie/django-rest-framework/issues/4416
1084+
[gh4409]: https://github.com/tomchristie/django-rest-framework/issues/4409
1085+
[gh4415]: https://github.com/tomchristie/django-rest-framework/issues/4415
1086+
[gh4410]: https://github.com/tomchristie/django-rest-framework/issues/4410
1087+
[gh4408]: https://github.com/tomchristie/django-rest-framework/issues/4408
1088+
[gh4398]: https://github.com/tomchristie/django-rest-framework/issues/4398
1089+
[gh4407]: https://github.com/tomchristie/django-rest-framework/issues/4407
1090+
[gh4403]: https://github.com/tomchristie/django-rest-framework/issues/4403
1091+
[gh4404]: https://github.com/tomchristie/django-rest-framework/issues/4404
1092+
[gh4412]: https://github.com/tomchristie/django-rest-framework/issues/4412

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

0 commit comments

Comments
 (0)