aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2013-06-03 12:34:18 +0100
committerTom Christie2013-06-03 12:34:18 +0100
commit28c2c46a031808f116af50d777b1b696a3c5ccc7 (patch)
treec5c6f8ade549ef0876f10445acd36c1c01069c56
parent6e0567c271ca2b68b5c53778692066a799fb2df6 (diff)
downloaddjango-rest-framework-28c2c46a031808f116af50d777b1b696a3c5ccc7.tar.bz2
Version 2.3.52.3.5
-rw-r--r--docs/topics/release-notes.md5
-rw-r--r--rest_framework/__init__.py2
2 files changed, 5 insertions, 2 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md
index 005538ae..9ac51f42 100644
--- a/docs/topics/release-notes.md
+++ b/docs/topics/release-notes.md
@@ -40,11 +40,14 @@ You can determine your currently installed version using `pip freeze`:
## 2.3.x series
-### Master
+### 2.3.5
+
+**Date**: 3rd June 2013
* Added `get_url` hook to `HyperlinkedIdentityField`.
* Serializer field `default` argument may be a callable.
* `@action` decorator now accepts a `methods` argument.
+* Bugfix: `request.user` should be still be accessible in renderer context if authentication fails.
* Bugfix: The `lookup_field` option on `HyperlinkedIdentityField` should apply by default to the url field on the serializer.
* Bugfix: `HyperlinkedIdentityField` should continue to support `pk_url_kwarg`, `slug_url_kwarg`, `slug_field`, in a pending deprecation state.
* Bugfix: Ensure we always return 404 instead of 500 if a lookup field cannot be converted to the correct lookup type. (Eg non-numeric `AutoInteger` pk lookup)
diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py
index 59046733..0a210186 100644
--- a/rest_framework/__init__.py
+++ b/rest_framework/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '2.3.4'
+__version__ = '2.3.5'
VERSION = __version__ # synonym