Version update for 0.9.1 release

This commit is contained in:
Matt Good
2014-11-24 13:25:17 -08:00
parent 82295aa4aa
commit 6286dadc27
3 changed files with 12 additions and 3 deletions

View File

@@ -1,8 +1,17 @@
Changes
=======
0.9.1 (2014-11-24)
------------------
Fixes:
- Fix SQL queries with byte strings on Python 3
- Fix displaying values whose `repr()` contains unprintable characters
0.9.0 (2014-01-03)
--------
------------------
Enhancements:

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.0'
release = '0.9.1'
# 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.0',
version='0.9.1',
url='http://flask-debugtoolbar.rtfd.org/',
license='BSD',
author='Michael van Tellingen',