diff options
| author | Tom Christie | 2012-12-07 22:36:30 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-12-07 22:36:30 +0000 |
| commit | b170973993cb269e2a061ab592d272ec9b67c86f (patch) | |
| tree | cec4697af2032553bd3c5f0ccfaf992463fa0619 | |
| parent | 21f7dcf7c6da2e47f3b14d10018dfe6d0d060449 (diff) | |
| download | django-rest-framework-b170973993cb269e2a061ab592d272ec9b67c86f.tar.bz2 | |
Version 2.1.72.1.7
| -rw-r--r-- | README.md | 12 | ||||
| -rw-r--r-- | docs/topics/release-notes.md | 4 | ||||
| -rw-r--r-- | rest_framework/__init__.py | 2 |
3 files changed, 16 insertions, 2 deletions
@@ -58,6 +58,18 @@ To run the tests. # Changelog +## 2.1.7 + +**Date**: 7th Dec 2012 + +* Serializers now properly support nullable Foreign Keys. +* Serializer validation now includes model field validation, such as uniqueness constraints. +* Support 'true' and 'false' string values for BooleanField. +* Added pickle support for serialized data. +* Support `source='dotted.notation'` style for nested serializers. +* Make `Request.user` settable. +* Bugfix: Fix `RegexField` to work with `BrowsableAPIRenderer` + ## 2.1.6 **Date**: 23rd Nov 2012 diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 91cbb2fc..5b371d01 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -4,7 +4,9 @@ > > — Eric S. Raymond, [The Cathedral and the Bazaar][cite]. -## Master +## 2.1.7 + +**Date**: 7th Dec 2012 * Serializers now properly support nullable Foreign Keys. * Serializer validation now includes model field validation, such as uniqueness constraints. diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 48cebbc5..da2c5d5c 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -1,3 +1,3 @@ -__version__ = '2.1.6' +__version__ = '2.1.7' VERSION = __version__ # synonym |
