Skip to content

Commit 7661398

Browse files
committed
Merge pull request #3420 from linovia/release/3.2.4
Release/3.2.4
2 parents 41b796d + 6ee3e29 commit 7661398

File tree

76 files changed

+4834
-2060
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+4834
-2060
lines changed

docs/topics/release-notes.md

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

4141
## 3.2.x series
4242

43+
### 3.2.4
44+
45+
**Date**: [21th September 2015][3.2.4-milestone].
46+
47+
* Don't error on missing `ViewSet.search_fields` attribute.([#3324][gh3324], [#3323][gh3323])
48+
* Fix `allow_empty` not working on serializers with `many=True`. ([#3361][gh3361], [#3364][gh3364])
49+
* Let `DurationField` accepts integers. ([#3359][gh3359])
50+
* Multi-level dictionaries not supported in multipart requests. ([#3314][gh3314])
51+
* Fix `ListField` truncation on HTTP PATCH ([#3415][gh3415], [#2761][gh2761])
52+
4353
### 3.2.3
4454

4555
**Date**: [24th August 2015][3.2.3-milestone].
@@ -299,6 +309,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
299309
[3.2.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.1+Release%22
300310
[3.2.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.2+Release%22
301311
[3.2.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.3+Release%22
312+
[3.2.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.4+Release%22
302313

303314
<!-- 3.0.1 -->
304315
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -513,6 +524,12 @@ For older release notes, [please see the version 2.x documentation][old-release-
513524
[gh3318]: https://github.com/tomchristie/django-rest-framework/issues/3318
514525
[gh3321]: https://github.com/tomchristie/django-rest-framework/issues/3321
515526

516-
517-
518-
527+
<!-- 3.2.4 -->
528+
[gh2761]: https://github.com/tomchristie/django-rest-framework/issues/2761
529+
[gh3314]: https://github.com/tomchristie/django-rest-framework/issues/3314
530+
[gh3323]: https://github.com/tomchristie/django-rest-framework/issues/3323
531+
[gh3324]: https://github.com/tomchristie/django-rest-framework/issues/3324
532+
[gh3359]: https://github.com/tomchristie/django-rest-framework/issues/3359
533+
[gh3361]: https://github.com/tomchristie/django-rest-framework/issues/3361
534+
[gh3364]: https://github.com/tomchristie/django-rest-framework/issues/3364
535+
[gh3415]: https://github.com/tomchristie/django-rest-framework/issues/3415

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.2.3'
11+
__version__ = '3.2.4'
1212
__author__ = 'Tom Christie'
1313
__license__ = 'BSD 2-Clause'
1414
__copyright__ = 'Copyright 2011-2015 Tom Christie'
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)