diff options
| author | Tom Christie | 2012-11-09 13:13:41 +0000 | 
|---|---|---|
| committer | Tom Christie | 2012-11-09 13:13:41 +0000 | 
| commit | 3ac26af7cad46bf3248b8e794f8f82c69639ac60 (patch) | |
| tree | c19fd34d9e3efc46b37fd47a6af4e95a70d0fe32 | |
| parent | c7df9694b5a7a7931161f74a7c5c16d5c98d87d9 (diff) | |
| download | django-rest-framework-3ac26af7cad46bf3248b8e794f8f82c69639ac60.tar.bz2 | |
Version 2.1.2 (Adds filtering support)2.1.2
| -rw-r--r-- | README.md | 7 | ||||
| -rw-r--r-- | docs/topics/release-notes.md | 7 | ||||
| -rw-r--r-- | rest_framework/__init__.py | 2 | 
3 files changed, 13 insertions, 3 deletions
| @@ -57,6 +57,13 @@ To run the tests.  # Changelog +## 2.1.2 + +**Date**: 9th Nov 2012 + +* **Filtering support.** +* Bugfix: Support creation of objects with reverse M2M relations. +  ## 2.1.1  **Date**: 7th Nov 2012 diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index b0d566a6..670332e6 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -4,9 +4,12 @@  >  > — Eric S. Raymond, [The Cathedral and the Bazaar][cite]. -## Master +## 2.1.2 -* Bugfix: Support creation of objects with reverse M2M relations +**Date**: 9th Nov 2012 + +* **Filtering support.** +* Bugfix: Support creation of objects with reverse M2M relations.  ## 2.1.1 diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index fc99b879..fd176603 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -1,3 +1,3 @@ -__version__ = '2.1.1' +__version__ = '2.1.2'  VERSION = __version__  # synonym | 
