From ad671022e1a43f91e0285f53bab64b7e33395eb3 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 3 Jan 2013 22:14:11 +0000 Subject: Version 2.1.15 --- README.md | 13 +++++++++++++ docs/topics/release-notes.md | 4 +++- rest_framework/__init__.py | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc1053d2..cb91d018 100644 --- a/README.md +++ b/README.md @@ -81,6 +81,19 @@ To run the tests. # Changelog +### 2.1.15 + +**Date**: 3rd Jan 2013 + +* Added `PATCH` support. +* Added `RetrieveUpdateAPIView`. +* Relation changes are now persisted in `save` instead of in `.restore_object`. +* Remove unused internal `save_m2m` flag on `ModelSerializer.save()`. +* Tweak behavior of hyperlinked fields with an explicit format suffix. +* Relation changes are now persisted in `.save()` instead of in `.restore_object()`. +* Bugfix: Fix issue with FileField raising exception instead of validation error when files=None. +* Bugfix: Partial updates should not set default values if field is not included. + ### 2.1.14 **Date**: 31st Dec 2012 diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index eed9e1df..3b13f86f 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -16,7 +16,9 @@ Major version numbers (x.0.0) are reserved for project milestones. No major poi ## 2.1.x series -### Master +### 2.1.15 + +**Date**: 3rd Jan 2013 * Added `PATCH` support. * Added `RetrieveUpdateAPIView`. diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 151ba832..1d25ee7f 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -1,3 +1,3 @@ -__version__ = '2.1.14' +__version__ = '2.1.15' VERSION = __version__ # synonym -- cgit v1.2.3