Skip to content

Commit 7e921ca

Browse files
committed
Merge pull request #2385 from linovia/release/3.0.3
Release 3.0.3
2 parents 4d9e7a5 + ef16c54 commit 7e921ca

File tree

2 files changed

+42
-1
lines changed

2 files changed

+42
-1
lines changed

docs/topics/release-notes.md

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

4141
## 3.0.x series
4242

43+
44+
### 3.0.3
45+
46+
**Date**: [8th January 2015][3.0.3-milestone].
47+
48+
* Fix `MinValueValidator` on `models.DateField`. ([#2369][gh2369])
49+
* Fix serializer missing context when pagination is used. ([#2355][gh2355])
50+
* Namespaced router URLs are now supported by the `DefaultRouter`. ([#2351][gh2351])
51+
* `required=False` allows omission of value for output. ([#2342][gh2342])
52+
* Use textarea input for `models.TextField`. ([#2340][gh2340])
53+
* Use custom `ListSerializer` for pagination if required. ([#2331][gh2331], [#2327][gh2327])
54+
* Better behavior with null and '' for blank HTML fields. ([#2330][gh2330])
55+
* Ensure fields in `exclude` are model fields. ([#2319][gh2319])
56+
* Fix `IntegerField` and `max_length` argument incompatibility. ([#2317][gh2317])
57+
* Fix the YAML encoder for 3.0 serializers. ([#2315][gh2315], [#2283][gh2283])
58+
* Fix the behavior of empty HTML fields. ([#2311][gh2311], [#1101][gh1101])
59+
* Fix Metaclass attribute depth ignoring fields attribute. ([#2287][gh2287])
60+
* Fix `format_suffix_patterns` to work with Django's `i18n_patterns`. ([#2278][gh2278])
61+
* Ability to customize router URLs for custom actions, using `url_path`. ([#2010][gh2010])
62+
* Don't install Django REST Framework as egg. ([#2386][gh2386])
63+
4364
### 3.0.2
4465

4566
**Date**: [17th December 2014][3.0.2-milestone].
@@ -680,6 +701,7 @@ For older release notes, [please see the GitHub repo](old-release-notes).
680701

681702
[3.0.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.1+Release%22
682703
[3.0.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.2+Release%22
704+
[3.0.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.3+Release%22
683705

684706
<!-- 3.0.1 -->
685707
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -729,3 +751,22 @@ For older release notes, [please see the GitHub repo](old-release-notes).
729751
[gh2290]: https://github.com/tomchristie/django-rest-framework/issues/2290
730752
[gh2291]: https://github.com/tomchristie/django-rest-framework/issues/2291
731753
[gh2294]: https://github.com/tomchristie/django-rest-framework/issues/2294
754+
<!-- 3.0.3 -->
755+
[gh1101]: https://github.com/tomchristie/django-rest-framework/issues/1101
756+
[gh2010]: https://github.com/tomchristie/django-rest-framework/issues/2010
757+
[gh2278]: https://github.com/tomchristie/django-rest-framework/issues/2278
758+
[gh2283]: https://github.com/tomchristie/django-rest-framework/issues/2283
759+
[gh2287]: https://github.com/tomchristie/django-rest-framework/issues/2287
760+
[gh2311]: https://github.com/tomchristie/django-rest-framework/issues/2311
761+
[gh2315]: https://github.com/tomchristie/django-rest-framework/issues/2315
762+
[gh2317]: https://github.com/tomchristie/django-rest-framework/issues/2317
763+
[gh2319]: https://github.com/tomchristie/django-rest-framework/issues/2319
764+
[gh2327]: https://github.com/tomchristie/django-rest-framework/issues/2327
765+
[gh2330]: https://github.com/tomchristie/django-rest-framework/issues/2330
766+
[gh2331]: https://github.com/tomchristie/django-rest-framework/issues/2331
767+
[gh2340]: https://github.com/tomchristie/django-rest-framework/issues/2340
768+
[gh2342]: https://github.com/tomchristie/django-rest-framework/issues/2342
769+
[gh2351]: https://github.com/tomchristie/django-rest-framework/issues/2351
770+
[gh2355]: https://github.com/tomchristie/django-rest-framework/issues/2355
771+
[gh2369]: https://github.com/tomchristie/django-rest-framework/issues/2369
772+
[gh2386]: https://github.com/tomchristie/django-rest-framework/issues/2386

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

0 commit comments

Comments
 (0)