diff options
| author | David Cramer | 2011-05-09 23:53:20 -0700 | 
|---|---|---|
| committer | David Cramer | 2011-05-09 23:53:20 -0700 | 
| commit | f4f8ff3378b2ccbb7650984492d09e9650e0609b (patch) | |
| tree | 3d3428d6960ba2117c5835a3e402d19bcd6ff610 | |
| parent | a3e8ce8eb1c4e2d1482a22d3a7e0dba7f4ff3201 (diff) | |
| parent | 930f33bfe9526cc7b917853da473a358ec5fc071 (diff) | |
| download | django-debug-toolbar-f4f8ff3378b2ccbb7650984492d09e9650e0609b.tar.bz2 | |
Merge branch 'master' of git://github.com/django-debug-toolbar/django-debug-toolbar
| -rw-r--r-- | NEWS | 16 | ||||
| -rw-r--r-- | debug_toolbar/__init__.py | 2 | 
2 files changed, 15 insertions, 3 deletions
| @@ -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)) | 
