diff options
| author | Tom Christie | 2012-11-05 16:46:33 +0000 | 
|---|---|---|
| committer | Tom Christie | 2012-11-05 16:46:33 +0000 | 
| commit | 9746abdf72738b85ea0d428db2f936e87de0fe55 (patch) | |
| tree | 3c16018ebb1dfae06b15b40ffdba8b62aa6aa0fc | |
| parent | 1418d104a86a0c861a9d3b9831f7bb98b0891f57 (diff) | |
| download | django-rest-framework-9746abdf72738b85ea0d428db2f936e87de0fe55.tar.bz2 | |
Version 2.1.0.  Adding release notes.2.1.0
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | docs/topics/release-notes.md | 1 | ||||
| -rw-r--r-- | rest_framework/__init__.py | 2 | 
3 files changed, 3 insertions, 1 deletions
| @@ -65,6 +65,7 @@ To run the tests.  * **Serializer `instance` and `data` keyword args have their position swapped.**  * `queryset` argument is now optional on writable model fields. +* Hyperlinked related fields optionally take `slug_field` and `slug_field_kwarg` arguments.  * Support Django's cache framework.  * Minor field improvements. (Don't stringify dicts, more robust many-pk fields.)  * Bugfixes (Support choice field in Browseable API) diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 6e7008f1..b5c81c2b 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -12,6 +12,7 @@  * **Serializer `instance` and `data` keyword args have their position swapped.**  * `queryset` argument is now optional on writable model fields. +* Hyperlinked related fields optionally take `slug_field` and `slug_field_kwarg` arguments.  * Support Django's cache framework.  * Minor field improvements. (Don't stringify dicts, more robust many-pk fields.)  * Bugfix: Support choice field in Browseable API. diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 56b9a35c..5aa2b889 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -1,3 +1,3 @@ -__version__ = '2.0.2' +__version__ = '2.1.0'  VERSION = __version__  # synonym | 
