mirror of https://github.com/pallets/flask.git
Added logo with new slogan
This commit is contained in:
parent
9fa4f94ad8
commit
b0ab127015
6
CHANGES
6
CHANGES
|
@ -6,18 +6,22 @@ Here you can see the full list of changes between each Flask release.
|
|||
Version 0.2
|
||||
-----------
|
||||
|
||||
[unreleased; current development version]
|
||||
Released on May 12th, codename Jägermeister
|
||||
|
||||
- various bugfixes
|
||||
- integrated JSON support
|
||||
- added :func:`~flask.get_template_attribute` helper function.
|
||||
- :meth:`~flask.Flask.add_url_rule` can now also register a
|
||||
view function.
|
||||
- refactored internal request dispatching.
|
||||
- server listens on 127.0.0.1 by default now to fix issues with chrome.
|
||||
- added external URL support.
|
||||
- added support for :func:`~flask.send_file`
|
||||
- module support and internal request handling refactoring
|
||||
to better support pluggable applications.
|
||||
- sessions can be set to be permanent now on a per-session basis.
|
||||
- better error reporting on missing secret keys.
|
||||
- added support for Google Appengine.
|
||||
|
||||
Version 0.1
|
||||
-----------
|
||||
|
|
3
Makefile
3
Makefile
|
@ -5,6 +5,9 @@ all: clean-pyc test
|
|||
test:
|
||||
python tests/flask_tests.py
|
||||
|
||||
release:
|
||||
python setup.py release sdist upload
|
||||
|
||||
clean-pyc:
|
||||
find . -name '*.pyc' -exec rm -f {} +
|
||||
find . -name '*.pyo' -exec rm -f {} +
|
||||
|
|
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 90 KiB After Width: | Height: | Size: 77 KiB |
Binary file not shown.
Before Width: | Height: | Size: 23 KiB After Width: | Height: | Size: 20 KiB |
|
@ -0,0 +1,6 @@
|
|||
[egg_info]
|
||||
tag_build = dev
|
||||
tag_date = true
|
||||
|
||||
[aliases]
|
||||
release = egg_info -RDb ''
|
Loading…
Reference in New Issue