s/1.0/0.11/ in versionadded/versionchanged markers

closes #1817
This commit is contained in:
ThiefMaster 2016-05-23 14:42:42 +02:00
parent bdbca923ef
commit c5900a1adf
9 changed files with 19 additions and 19 deletions

View file

@ -3,7 +3,7 @@
Command Line Interface
======================
.. versionadded:: 1.0
.. versionadded:: 0.11
.. currentmodule:: flask

View file

@ -241,7 +241,7 @@ The following configuration values are used internally by Flask:
.. versionadded:: 0.10
``JSON_AS_ASCII``, ``JSON_SORT_KEYS``, ``JSONIFY_PRETTYPRINT_REGULAR``
.. versionadded:: 1.0
.. versionadded:: 0.11
``SESSION_REFRESH_EACH_REQUEST``, ``TEMPLATES_AUTO_RELOAD``,
``LOGGER_HANDLER_POLICY``, ``EXPLAIN_TEMPLATE_LOADING``

View file

@ -63,7 +63,7 @@ You are however not limited to :exc:`~werkzeug.exceptions.HTTPException`
or HTTP status codes but can register a handler for every exception class you
like.
.. versionchanged:: 1.0
.. versionchanged:: 0.11
Errorhandlers are now prioritized by specificity of the exception classes
they are registered for instead of the order they are registered in.