From 3ac26af7cad46bf3248b8e794f8f82c69639ac60 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Fri, 9 Nov 2012 13:13:41 +0000 Subject: [PATCH] Version 2.1.2 (Adds filtering support) --- README.md | 7 +++++++ docs/topics/release-notes.md | 7 +++++-- rest_framework/__init__.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5d3e884d6..723e18de0 100644 --- a/README.md +++ b/README.md @@ -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 b0d566a68..670332e60 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 fc99b8792..fd176603c 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