diff --git a/CHANGES.rst b/CHANGES.rst index 4002701..3a18d07 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,10 +1,22 @@ Changes ======= -0.11.0 (Unreleased) +0.11.0 (2020-02-18) ------------------- --?? +Enhancements: + +- Switch to Flask's native CLI, dropping flask_script in the process (b92391d, thanks @jeffwidman) +- Do not show DebugToolbar routes in the route map (#86, thanks @floqqi) +- Document Pygments for SQL highlighting (#127, thanks @pgiraud) + +Fixes: + +- Remove deprecated flask.json_available (#119, thanks @davidism) +- Remove deprecated request.is_xhr (7ce099c, thanks @jeffwidman) +- Explicitly disable `SQLALCHEMY_TRACK_MODIFICATIONS` (9c7db48, thanks @jeffwidman) +- Fix typo (#142, thanks @timgates42) + 0.10.1 (2017-02-12) ------------------- diff --git a/docs/conf.py b/docs/conf.py index 7669013..3f244a6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = '0.11' +version = '0.11.0' # The full version, including alpha/beta/rc tags. -release = '0.11.dev0' +release = '0.11.0' # 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 770afa8..546a85a 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ setup( name='Flask-DebugToolbar', - version='0.11.dev0', + version='0.11.0', url='https://flask-debugtoolbar.readthedocs.io/', license='BSD', author='Michael van Tellingen',