Skip to content

Commit ce6e4cb

Browse files
committed
0.5 is 0.3 now, why skip numbers?
1 parent dfecc86 commit ce6e4cb

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Flask Changelog
33

44
Here you can see the full list of changes between each Flask release.
55

6-
Version 0.5
6+
Version 0.3
77
-----------
88

99
Release date to be announced

docs/config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Configuration Handling
44
======================
55

6-
.. versionadded:: 0.5
6+
.. versionadded:: 0.3
77

88
Applications need some kind of configuration. There are different things
99
you might want to change. Like toggling debug mode, the secret key and a

docs/errorhandling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Handling Application Errors
44
===========================
55

6-
.. versionadded:: 0.5
6+
.. versionadded:: 0.3
77

88
Applications fail, server fail. Sooner or later you will see an exception
99
in production. Even if your code is 100% correct, you will still see

docs/patterns/flashing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ And of course the login template:
8686
Flashing With Categories
8787
------------------------
8888

89-
.. versionadded:: 0.5
89+
.. versionadded:: 0.3
9090

9191
It is also possible to provide categories when flashing a message. The
9292
default category if nothing is provided is ``'message'``. Alternative

docs/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ for a full example.
691691
Logging
692692
-------
693693

694-
.. versionadded:: 0.5
694+
.. versionadded:: 0.3
695695

696696
Sometimes you might be in the situation where you deal with data that
697697
should be correct, but actually is not. For example you have some client
@@ -702,7 +702,7 @@ Request`` in that situation, but other times it is not and the code has to
702702
continue working.
703703

704704
Yet you want to log that something fishy happened. This is where loggers
705-
come in handy. As of Flask 0.5 a logger is preconfigured for you to use.
705+
come in handy. As of Flask 0.3 a logger is preconfigured for you to use.
706706

707707
Here are some example log calls::
708708

docs/shell.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Working with the Shell
22
======================
33

4-
.. versionadded:: 0.5
4+
.. versionadded:: 0.3
55

66
One of the reasons everybody loves Python is the interactive shell. It
77
basically allows you to execute Python commands in real time and

docs/upgrading.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ This section of the documentation enumerates all the changes in Flask from
1414
release to release and how you can change your code to have a painless
1515
updating experience.
1616

17-
Version 0.5
17+
Version 0.3
1818
-----------
1919

20-
Flask 0.5 introduces configuration support and logging as well as
20+
Flask 0.3 introduces configuration support and logging as well as
2121
categories for flashing messages. All these are features that are 100%
2222
backwards compatible but you might want to take advantage of them.
2323

flask.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def flash(message, category='message'):
232232
flashed message from the session and to display it to the user,
233233
the template has to call :func:`get_flashed_messages`.
234234
235-
.. versionchanged: 0.5
235+
.. versionchanged: 0.3
236236
`category` parameter added.
237237
238238
:param message: the message to be flashed.
@@ -260,7 +260,7 @@ def get_flashed_messages(with_categories=False):
260260
<p class=flash-{{ category }}>{{ msg }}
261261
{% endfor %}
262262
263-
.. versionchanged:: 0.5
263+
.. versionchanged:: 0.3
264264
`with_categories` parameter added.
265265
266266
:param with_categories: set to `True` to also receive categories.
@@ -829,7 +829,7 @@ class Flask(_PackageBoundObject):
829829
#: the application is in debug mode, otherwise the attached logging
830830
#: handler does the formatting.
831831
#:
832-
#: .. versionadded:: 0.5
832+
#: .. versionadded:: 0.3
833833
debug_log_format = (
834834
'-' * 80 + '\n' +
835835
'%(levelname)s in %(module)s, %(pathname)s:%(lineno)d]:\n' +
@@ -949,7 +949,7 @@ def logger(self):
949949
app.logger.warning('A warning ocurred (%d apples)', 42)
950950
app.logger.error('An error occoured')
951951
952-
.. versionadded:: 0.5
952+
.. versionadded:: 0.3
953953
"""
954954
from logging import getLogger, StreamHandler, Formatter, DEBUG
955955
class DebugHandler(StreamHandler):
@@ -1225,7 +1225,7 @@ def handle_http_exception(self, e):
12251225
registered error handlers and fall back to returning the
12261226
exception as response.
12271227
1228-
.. versionadded: 0.5
1228+
.. versionadded: 0.3
12291229
"""
12301230
handler = self.error_handlers.get(e.code)
12311231
if handler is None:
@@ -1239,7 +1239,7 @@ def handle_exception(self, e):
12391239
for an 500 internal server error is used. If no such handler
12401240
exists, a default 500 internal server error message is displayed.
12411241
1242-
.. versionadded: 0.5
1242+
.. versionadded: 0.3
12431243
"""
12441244
handler = self.error_handlers.get(500)
12451245
if self.debug:
@@ -1397,7 +1397,7 @@ def request_context(self, environ):
13971397
u'/'
13981398
>>> ctx.unbind()
13991399
1400-
.. versionchanged:: 0.5
1400+
.. versionchanged:: 0.3
14011401
Added support for non-with statement usage and `with` statement
14021402
is now passed the ctx object.
14031403

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def hello():
4343

4444
setup(
4545
name='Flask',
46-
version='0.5',
46+
version='0.3',
4747
url='http://github.com/mitsuhiko/flask/',
4848
license='BSD',
4949
author='Armin Ronacher',

0 commit comments

Comments
 (0)