Skip to content

Commit e73dddd

Browse files
committed
Merge pull request #2726 from linovia/release/3.1.1
Release notes for 3.1.1 and version bump.
2 parents 7872d0a + 164be17 commit e73dddd

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

docs/topics/release-notes.md

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

4141
## 3.0.x series
4242

43+
### 3.1.1
44+
45+
**Date**: [19th March 2015][3.1.1-milestone].
46+
47+
* Fix missing anchor closing tag after next button. ([#2691][gh2691])
48+
* Fix `lookup_url_kwarg` handling in viewsets. ([#2685][gh2685], [#2591][gh2591])
49+
* Fix problem with imporing `rest_framework.views` in `apps.py` ([#2678][gh2678])
50+
* LimitOffsetPagination raises Type error if PAGE_SIZE not set ([#2667][gh2667], [#2700][gh2700])
51+
* German translation for `min_value` field error message references `max_value`. ([#2645][gh2645])
52+
* Remove `MergeDict`. ([#2640][gh2640])
53+
* Support serializing unsaved models with related fields. ([#2637][gh2637], [#2641][gh2641])
54+
* Allow blank/null on radio.html choices. ([#2631][gh2631])
55+
56+
4357
### 3.1.0
4458

4559
**Date**: [5th March 2015][3.1.0-milestone].
@@ -161,6 +175,8 @@ For older release notes, [please see the version 2.x documentation](old-release-
161175
[3.0.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.3+Release%22
162176
[3.0.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.4+Release%22
163177
[3.0.5-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.0.5+Release%22
178+
[3.1.0-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.0+Release%22
179+
[3.1.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.1.1+Release%22
164180

165181
<!-- 3.0.1 -->
166182
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
@@ -259,3 +275,15 @@ For older release notes, [please see the version 2.x documentation](old-release-
259275
[gh2519]: https://github.com/tomchristie/django-rest-framework/issues/2519
260276
[gh2524]: https://github.com/tomchristie/django-rest-framework/issues/2524
261277
[gh2530]: https://github.com/tomchristie/django-rest-framework/issues/2530
278+
<!-- 3.1.1 -->
279+
[gh2691]: https://github.com/tomchristie/django-rest-framework/issues/2691
280+
[gh2685]: https://github.com/tomchristie/django-rest-framework/issues/2685
281+
[gh2591]: https://github.com/tomchristie/django-rest-framework/issues/2591
282+
[gh2678]: https://github.com/tomchristie/django-rest-framework/issues/2678
283+
[gh2667]: https://github.com/tomchristie/django-rest-framework/issues/2667
284+
[gh2700]: https://github.com/tomchristie/django-rest-framework/issues/2700
285+
[gh2645]: https://github.com/tomchristie/django-rest-framework/issues/2645
286+
[gh2640]: https://github.com/tomchristie/django-rest-framework/issues/2640
287+
[gh2637]: https://github.com/tomchristie/django-rest-framework/issues/2637
288+
[gh2641]: https://github.com/tomchristie/django-rest-framework/issues/2641
289+
[gh2631]: https://github.com/tomchristie/django-rest-framework/issues/2631

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

0 commit comments

Comments
 (0)