Skip to content

Commit f9ea3fe

Browse files
committed
1.0 -> 0.11 in the docs
1 parent 1df426a commit f9ea3fe

File tree

7 files changed

+21
-11
lines changed

7 files changed

+21
-11
lines changed

docs/api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ thing, like it does for :class:`request` and :class:`session`.
289289
It's now also possible to use the ``in`` operator on it to see if an
290290
attribute is defined and it yields all keys on iteration.
291291

292-
As of 1.0 you can use :meth:`pop` and :meth:`setdefault` in the same
292+
As of 0.11 you can use :meth:`pop` and :meth:`setdefault` in the same
293293
way you would use them on a dictionary.
294294

295295
This is a proxy. See :ref:`notes-on-proxies` for more information.

docs/cli.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Command Line Interface
77

88
.. currentmodule:: flask
99

10-
One of the nice new features in Flask 1.0 is the built-in integration of
10+
One of the nice new features in Flask 0.11 is the built-in integration of
1111
the `click <http://click.pocoo.org/>`_ command line interface. This
1212
enables a wide range of new features for the Flask ecosystem and your own
1313
applications.

docs/errorhandling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Logging to a File
131131

132132
Even if you get mails, you probably also want to log warnings. It's a
133133
good idea to keep as much information around that might be required to
134-
debug a problem. By default as of Flask 1.0, errors are logged to your
134+
debug a problem. By default as of Flask 0.11, errors are logged to your
135135
webserver's log automatically. Warnings however are not. Please note
136136
that Flask itself will not issue any warnings in the core system, so it's
137137
your responsibility to warn in the code if something seems odd.

docs/extensiondev.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ Flask 0.8 introduced a redirect import system as a compatibility aid for app
408408
developers: Importing ``flask.ext.foo`` would try ``flask_foo`` and
409409
``flaskext.foo`` in that order.
410410

411-
As of Flask 1.0, most Flask extensions have transitioned to the new naming
412-
schema. The ``flask.ext.foo`` compatibility alias is still in Flask 1.0 but is
411+
As of Flask 0.11, most Flask extensions have transitioned to the new naming
412+
schema. The ``flask.ext.foo`` compatibility alias is still in Flask 0.11 but is
413413
now deprecated -- you should use ``flask_foo``.
414414

415415

docs/server.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Development Server
55

66
.. currentmodule:: flask
77

8-
Starting with Flask 1.0 there are multiple built-in ways to run a
8+
Starting with Flask 0.11 there are multiple built-in ways to run a
99
development server. The best one is the :command:`flask` command line utility
1010
but you can also continue using the :meth:`Flask.run` method.
1111

docs/shell.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ chapter of the documentation first.
2929
Command Line Interface
3030
----------------------
3131

32-
Starting with Flask 1.0 the recommended way to work with the shell is the
32+
Starting with Flask 0.11 the recommended way to work with the shell is the
3333
``flask shell`` command which does a lot of this automatically for you.
3434
For instance the shell is automatically initialized with a loaded
3535
application context.

docs/upgrading.rst

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,23 @@ installation, make sure to pass it the :option:`-U` parameter::
2121

2222
.. _upgrading-to-10:
2323

24-
Version 1.0
25-
-----------
24+
Version 0.11
25+
------------
26+
27+
0.11 is an odd release in the Flask release cycle because it was supposed
28+
to be the 1.0 release. However because there was such a long lead time up
29+
to the release we decided to push out a 0.11 release first with some
30+
changes removed to make the transition easier. If you have been tracking
31+
the master branch which was 1.0 you might see some unexpected changes.
32+
33+
In case you did track the master branch you will notice that `flask --app`
34+
is removed now. You need to use the environment variable to specify an
35+
application.
2636

2737
Debugging
2838
`````````
2939

30-
Flask 1.0 removed the ``debug_log_format`` attribute from Flask
40+
Flask 0.11 removed the ``debug_log_format`` attribute from Flask
3141
applications. Instead the new ``LOGGER_HANDLER_POLICY`` configuration can
3242
be used to disable the default log handlers and custom log handlers can be
3343
set up.
@@ -206,7 +216,7 @@ before, you should catch them with :exc:`RuntimeError` now.
206216

207217
Additionally the :func:`~flask.send_file` function is now issuing
208218
deprecation warnings if you depend on functionality that will be removed
209-
in Flask 1.0. Previously it was possible to use etags and mimetypes
219+
in Flask 0.11. Previously it was possible to use etags and mimetypes
210220
when file objects were passed. This was unreliable and caused issues
211221
for a few setups. If you get a deprecation warning, make sure to
212222
update your application to work with either filenames there or disable

0 commit comments

Comments
 (0)