File tree 6 files changed +106
-132
lines changed
6 files changed +106
-132
lines changed Original file line number Diff line number Diff line change @@ -6,18 +6,22 @@ Here you can see the full list of changes between each Flask release.
6
6
Version 0.2
7
7
-----------
8
8
9
- [unreleased; current development version]
9
+ Released on May 12th, codename Jägermeister
10
10
11
11
- various bugfixes
12
12
- integrated JSON support
13
13
- added :func:`~flask.get_template_attribute` helper function.
14
14
- :meth:`~flask.Flask.add_url_rule` can now also register a
15
15
view function.
16
+ - refactored internal request dispatching.
16
17
- server listens on 127.0.0.1 by default now to fix issues with chrome.
17
18
- added external URL support.
18
19
- added support for :func:`~flask.send_file`
19
20
- module support and internal request handling refactoring
20
21
to better support pluggable applications.
22
+ - sessions can be set to be permanent now on a per-session basis.
23
+ - better error reporting on missing secret keys.
24
+ - added support for Google Appengine.
21
25
22
26
Version 0.1
23
27
-----------
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ all: clean-pyc test
5
5
test :
6
6
python tests/flask_tests.py
7
7
8
+ release :
9
+ python setup.py release sdist upload
10
+
8
11
clean-pyc :
9
12
find . -name ' *.pyc' -exec rm -f {} +
10
13
find . -name ' *.pyo' -exec rm -f {} +
You can’t perform that action at this time.
0 commit comments