Version 3.2.5

This commit is contained in:
Tom Christie 2015-10-27 14:30:47 +00:00
parent c81acab7e0
commit 721efa2817
3 changed files with 9 additions and 2 deletions

View File

@ -40,6 +40,12 @@ You can determine your currently installed version using `pip freeze`:
## 3.2.x series
### 3.2.5
**Date**: [27th October 2015][3.2.5-milestone].
* Escape `username` in optional logout tag.
### 3.2.4
**Date**: [21th September 2015][3.2.4-milestone].
@ -310,6 +316,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
[3.2.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.2+Release%22
[3.2.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.3+Release%22
[3.2.4-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.4+Release%22
[3.2.5-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.2.5+Release%22
<!-- 3.0.1 -->
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013

View File

@ -8,7 +8,7 @@ ______ _____ _____ _____ __
"""
__title__ = 'Django REST framework'
__version__ = '3.2.4'
__version__ = '3.2.5'
__author__ = 'Tom Christie'
__license__ = 'BSD 2-Clause'
__copyright__ = 'Copyright 2011-2015 Tom Christie'

View File

@ -7,7 +7,7 @@ from django.core.urlresolvers import NoReverseMatch, reverse
from django.template import Context, loader
from django.utils import six
from django.utils.encoding import force_text, iri_to_uri
from django.utils.html import escape, smart_urlquote
from django.utils.html import escape, format_html, smart_urlquote
from django.utils.safestring import SafeData, mark_safe
from rest_framework.renderers import HTMLFormRenderer