aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2012-11-16 22:58:17 +0000
committerTom Christie2012-11-16 22:58:22 +0000
commit016ef5019ff43808540f948d674e8dd33247cb99 (patch)
tree8a1f52407a002bb0c6f090be17e5ec65d8c40b35
parente801e21210da829b2c22f1cdd22ac1e1374515b7 (diff)
downloaddjango-rest-framework-016ef5019ff43808540f948d674e8dd33247cb99.tar.bz2
Version 2.1.32.1.3
-rw-r--r--README.md3
-rw-r--r--docs/topics/release-notes.md3
-rw-r--r--rest_framework/__init__.py2
3 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index d03fc80e..9a12d535 100644
--- a/README.md
+++ b/README.md
@@ -62,9 +62,12 @@ To run the tests.
**Date**: 16th Nov 2012
+* Added `FileField` and `ImageField`. For use with `MultiPartParser`.
+* Added `URLField` and `SlugField`.
* Support for `read_only_fields` on `ModelSerializer` classes.
* Support for clients overriding the pagination page sizes. Use the `PAGINATE_BY_PARAM` setting or set the `paginate_by_param` attribute on a generic view.
* 201 Responses now return a 'Location' header.
+* Bugfix: Serializer fields now respect `max_length`.
## 2.1.2
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md
index 5931a75a..2a6fbe83 100644
--- a/docs/topics/release-notes.md
+++ b/docs/topics/release-notes.md
@@ -8,9 +8,12 @@
**Date**: 16th Nov 2012
+* Added `FileField` and `ImageField`. For use with `MultiPartParser`.
+* Added `URLField` and `SlugField`.
* Support for `read_only_fields` on `ModelSerializer` classes.
* Support for clients overriding the pagination page sizes. Use the `PAGINATE_BY_PARAM` setting or set the `paginate_by_param` attribute on a generic view.
* 201 Responses now return a 'Location' header.
+* Bugfix: Serializer fields now respect `max_length`.
## 2.1.2
diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py
index fd176603..88108a8d 100644
--- a/rest_framework/__init__.py
+++ b/rest_framework/__init__.py
@@ -1,3 +1,3 @@
-__version__ = '2.1.2'
+__version__ = '2.1.3'
VERSION = __version__ # synonym