Commit ac84c2ed by Tom Christie

Version 2.1.4

parent ec437e3e
...@@ -58,6 +58,17 @@ To run the tests. ...@@ -58,6 +58,17 @@ To run the tests.
# Changelog # Changelog
## 2.1.4
**Date**: 22nd Nov 2012
* Support for partial updates with serializers.
* Added `RegexField`.
* Added `SerializerMethodField`.
* Serializer performance improvements.
* Added `obtain_token_view` to get tokens when using `TokenAuthentication`.
* Bugfix: Django 1.5 configurable user support for `TokenAuthentication`.
## 2.1.3 ## 2.1.3
**Date**: 16th Nov 2012 **Date**: 16th Nov 2012
......
...@@ -4,7 +4,9 @@ ...@@ -4,7 +4,9 @@
> >
> — Eric S. Raymond, [The Cathedral and the Bazaar][cite]. > — Eric S. Raymond, [The Cathedral and the Bazaar][cite].
## Master ## 2.1.4
**Date**: 22nd Nov 2012
* Support for partial updates with serializers. * Support for partial updates with serializers.
* Added `RegexField`. * Added `RegexField`.
...@@ -17,7 +19,6 @@ ...@@ -17,7 +19,6 @@
**Date**: 16th Nov 2012 **Date**: 16th Nov 2012
* Support for partial updates with serializers.
* Added `FileField` and `ImageField`. For use with `MultiPartParser`. * Added `FileField` and `ImageField`. For use with `MultiPartParser`.
* Added `URLField` and `SlugField`. * Added `URLField` and `SlugField`.
* Support for `read_only_fields` on `ModelSerializer` classes. * Support for `read_only_fields` on `ModelSerializer` classes.
......
__version__ = '2.1.3' __version__ = '2.1.4'
VERSION = __version__ # synonym VERSION = __version__ # synonym
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment