diff options
| author | Rob Hudson | 2011-04-25 11:26:29 -0700 |
|---|---|---|
| committer | Rob Hudson | 2011-04-25 11:26:29 -0700 |
| commit | eeca7d8952b665845e44696552093280ede8b03f (patch) | |
| tree | 6580aaf0caf8a62d4bcf6c8bb7b2c60bfd7e73f4 | |
| parent | 1ba439bff713560b0aa5340bd25c57bdc8152d5f (diff) | |
| parent | 6479ad305ab763a5eceb68c8eb0806caa6b63f77 (diff) | |
| download | django-debug-toolbar-eeca7d8952b665845e44696552093280ede8b03f.tar.bz2 | |
Merge branch 'release/v0.8.5' into develop
| -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)) |
