aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2013-05-24 23:55:59 +0100
committerTom Christie2013-05-24 23:55:59 +0100
commit2a38aa7291575aeb8b5444496ffad0b70dca3945 (patch)
tree9aea83f5f09773352e062586c9e109e4115cc82d
parentfcaee6e580efc62658a5b155525c55ef427c5778 (diff)
downloaddjango-rest-framework-2a38aa7291575aeb8b5444496ffad0b70dca3945.tar.bz2
Version 2.3.42.3.4
-rw-r--r--docs/topics/release-notes.md4
-rw-r--r--rest_framework/__init__.py2
-rw-r--r--rest_framework/renderers.py5
3 files changed, 5 insertions, 6 deletions
diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md
index 348b3a60..d3a95f1a 100644
--- a/docs/topics/release-notes.md
+++ b/docs/topics/release-notes.md
@@ -40,7 +40,9 @@ You can determine your currently installed version using `pip freeze`:
## 2.3.x series
-### Master
+### 2.3.4
+
+**Date**: 24th May 2013
* Serializer fields now support `label` and `help_text`.
* Added `UnicodeJSONRenderer`.
diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py
index 0b1e67fb..59046733 100644
--- a/rest_framework/__init__.py
+++ b/rest_framework/__init__.py
@@ -1,4 +1,4 @@
-__version__ = '2.3.3'
+__version__ = '2.3.4'
VERSION = __version__ # synonym
diff --git a/rest_framework/renderers.py b/rest_framework/renderers.py
index c42b086f..b2fe43ea 100644
--- a/rest_framework/renderers.py
+++ b/rest_framework/renderers.py
@@ -507,10 +507,7 @@ class BrowsableAPIRenderer(BaseRenderer):
def render(self, data, accepted_media_type=None, renderer_context=None):
"""
- Renders *obj* using the :attr:`template` set on the class.
-
- The context used in the template contains all the information
- needed to self-document the response to this request.
+ Render the HTML for the browsable API representation.
"""
accepted_media_type = accepted_media_type or ''
renderer_context = renderer_context or {}