aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cramer2011-05-09 23:53:20 -0700
committerDavid Cramer2011-05-09 23:53:20 -0700
commitf4f8ff3378b2ccbb7650984492d09e9650e0609b (patch)
tree3d3428d6960ba2117c5835a3e402d19bcd6ff610
parenta3e8ce8eb1c4e2d1482a22d3a7e0dba7f4ff3201 (diff)
parent930f33bfe9526cc7b917853da473a358ec5fc071 (diff)
downloaddjango-debug-toolbar-f4f8ff3378b2ccbb7650984492d09e9650e0609b.tar.bz2
Merge branch 'master' of git://github.com/django-debug-toolbar/django-debug-toolbar
-rw-r--r--NEWS16
-rw-r--r--debug_toolbar/__init__.py2
2 files changed, 15 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index f9b0cf8..cd13405 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,20 @@
News for django-debug-toolbar
=============================
-develop branch
---------------
+0.8.5 (2011 Apr 25)
+-------------------
+
+* Ensure if we're overriding the urlconf that we're resetting handler404/500.
+
+* Updated middleware logic to avoid work if content-type isn't right.
+
+* Change .load() calls to GET to avoid CSRF protection.
+
+* Updated SQL panel to match Django's which now includes logging.
+
+* Added basic multi-db support.
+
+* Some HTML validation fixes.
* Added support for `executemany`. Thanks to postal2600.
diff --git a/debug_toolbar/__init__.py b/debug_toolbar/__init__.py
index df5bb74..90f9e2f 100644
--- a/debug_toolbar/__init__.py
+++ b/debug_toolbar/__init__.py
@@ -1,2 +1,2 @@
-VERSION = (0, 8, 4)
+VERSION = (0, 8, 5)
__version__ = '.'.join(map(str, VERSION))