Update for 0.9.2 release

This commit is contained in:
Matt Good
2014-12-05 15:43:46 -08:00
parent 10c03880c7
commit bebe884615
3 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,15 @@
Changes
=======
0.9.2 (2014-12-05)
------------------
Fixes:
- HTML escape SQL queries when syntax highlighting is not available
- Use case-insensitive comparison to normalize filenames on Windows
- Fix exception when SQL query contained non-ASCII characters
0.9.1 (2014-11-24)
------------------

View File

@@ -50,7 +50,7 @@ copyright = u'2012, Matt Good'
# The short X.Y version.
version = '0.9'
# The full version, including alpha/beta/rc tags.
release = '0.9.1'
release = '0.9.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -14,7 +14,7 @@ except:
setup(
name='Flask-DebugToolbar',
version='0.9.1',
version='0.9.2',
url='http://flask-debugtoolbar.rtfd.org/',
license='BSD',
author='Michael van Tellingen',