diff --git a/CHANGES.rst b/CHANGES.rst index 811582e..07fb73b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) ------------------ diff --git a/docs/conf.py b/docs/conf.py index 923e171..bc73a94 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/setup.py b/setup.py index 5df7048..8abb358 100644 --- a/setup.py +++ b/setup.py @@ -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',