8000 Merge pull request #2474 from linovia/release/3.0.4 · rvanlaar/django-rest-framework@cf8a099 · GitHub
[go: up one dir, main page]

Skip to content

Commit cf8a099

Browse files
committed
Merge pull request encode#2474 from linovia/release/3.0.4
Release notes for 3.0.4
2 parents fc70c08 + 5b369bf commit cf8a099

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

docs/topics/release-notes.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,24 @@ You can determine your currently installed version using `pip freeze`:
4141
## 3.0.x series
4242

4343

44+
### 3.0.4
45+
46+
**Date**: [28th January 2015][3.0.4-milestone].
47+
48+
* Django 1.8a1 support. ([#2425][gh2425], [#2446][gh2446], [#2441][gh2441])
49+
* Add `DictField` and support Django 1.8 `HStoreField`. ([#2451][gh2451], [#2106][gh2106])
50+
* Add `UUIDField` and support Django 1.8 `UUIDField`. ([#2448][gh2448], [#2433][gh2433], [#2432][gh2432])
51+
* `BaseRenderer.render` now raises `NotImplementedError`. ([#2434][gh2434])
52+
* Fix timedelta JSON serialization on Python 2.6. ([#2430][gh2430])
53+
* `ResultDict` and `ResultList` now appear as standard dict/list. ([#2421][gh2421])
54+
* Fix visible `HiddenField` in the HTML form of the web browsable API page. ([#2410][gh2410])
55+
* Use `OrderedDict` for `RelatedField.choices`. ([#2408][gh2408])
56+
* Fix ident format when using `HTTP_X_FORWARDED_FOR`. ([#2401][gh2401])
57+
* Fix invalid key with memcached while using throttling. ([#2400][gh2400])
58+
* Fix `FileUploadParser` with version 3.x. ([#2399][gh2399])
59+
* Fix the serializer inheritance. ([#2388][gh2388])
60+
* Fix caching issues with `ReturnDict`. ([#2360][gh2360])
61+
4462
### 3.0.3
4563

4664
**Date**: [8th January 2015][3.0.3-milestone].
@@ -702,6 +720,7 @@ For older release notes, [please see the GitHub repo](old-release-notes).
702720
[3.0.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22
703721
[3.0.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.2+Release%22
704722
[3.0.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.3+Release%22
723+
[3.0.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.4+Release%22
705724

706725
<!-- 3.0.1 -->
707726
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -770,3 +789,22 @@ For older release notes, [please see the GitHub repo](old-release-notes).
770789
[gh2355]: https://github.com/tomchristie/django-rest-framework/issues/2355
771790
[gh2369]: https://github.com/tomchristie/django-rest-framework/issues/2369
772791
[gh2386]: https://github.com/tomchristie/django-rest-framework/issues/2386
792+
<!-- 3.0.4 -->
793+
[gh2425]: https://github.com/tomchristie/django-rest-framework/issues/2425
794+
[gh2446]: https://github.com/tomchristie/django-rest-framework/issues/2446
795+
[gh2441]: https://github.com/tomchristie/django-rest-framework/issues/2441
796+
[gh2451]: https://github.com/tomchristie/django-rest-framework/issues/2451
797+
[gh2106]: https://github.com/tomchristie/django-rest-framework/issues/2106
798+
[gh2448]: https://github.com/tomchristie/django-rest-framework/issues/2448
799+
[gh2433]: https://github.com/tomchristie/django-rest-framework/issues/2433
800+
[gh2432]: https://github.com/tomchristie/django-rest-framework/issues/2432
801+
[gh2434]: https://github.com/tomchristie/django-rest-framework/issues/2434
802+
[gh2430]: https://github.com/tomchristie/django-rest-framework/issues/2430
803+
[gh2421]: https://github.com/tomchristie/django-rest-framework/issues/2421
804+
[gh2410]: https://github.com/tomchristie/django-rest-framework/issues/2410
805+
[gh2408]: https://github.com/tomchristie/django-rest-framework/issues/2408
806+
[gh2401]: https://github.com/tomchristie/django-rest-framework/issues/2401
807+
[gh2400]: https://github.com/tomchristie/django-rest-framework/issues/2400
808+
[gh2399]: https://github.com/tomchristie/django-rest-framework/issues/2399
809+
[gh2388]: https://github.com/tomchristie/django-rest-framework/issues/2388
810+
[gh2360]: https://github.com/tomchristie/django-rest-framework/issues/2360

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

0 commit comments

Comments
 (0)
0