Version 2.1.4

This commit is contained in:
Tom Christie 2012-11-22 17:49:53 +00:00
parent ec437e3e0f
commit ac84c2ed2e
3 changed files with 15 additions and 3 deletions

View File

@ -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

View File

@ -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 @@
**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.

View File

@ -1,3 +1,3 @@
__version__ = '2.1.3' __version__ = '2.1.4'
VERSION = __version__ # synonym VERSION = __version__ # synonym