mirror of https://github.com/pallets/flask.git
release version 1.1.1
This commit is contained in:
parent
1a6696da70
commit
ffc68840f8
|
@ -3,7 +3,7 @@
|
||||||
Version 1.1.1
|
Version 1.1.1
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
Unreleased
|
Released 2019-07-08
|
||||||
|
|
||||||
- The ``flask.json_available`` flag was added back for compatibility
|
- The ``flask.json_available`` flag was added back for compatibility
|
||||||
with some extensions. It will raise a deprecation warning when used,
|
with some extensions. It will raise a deprecation warning when used,
|
||||||
|
|
|
@ -66,8 +66,8 @@ donate today`_.
|
||||||
Links
|
Links
|
||||||
-----
|
-----
|
||||||
|
|
||||||
* Website: https://www.palletsprojects.com/p/flask/
|
* Website: https://palletsprojects.com/p/flask/
|
||||||
* Documentation: http://flask.pocoo.org/docs/
|
* Documentation: https://flask.palletsprojects.com/
|
||||||
* Releases: https://pypi.org/project/Flask/
|
* Releases: https://pypi.org/project/Flask/
|
||||||
* Code: https://github.com/pallets/flask
|
* Code: https://github.com/pallets/flask
|
||||||
* Issue tracker: https://github.com/pallets/flask/issues
|
* Issue tracker: https://github.com/pallets/flask/issues
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -15,7 +15,7 @@ setup(
|
||||||
version=version,
|
version=version,
|
||||||
url="https://palletsprojects.com/p/flask/",
|
url="https://palletsprojects.com/p/flask/",
|
||||||
project_urls={
|
project_urls={
|
||||||
"Documentation": "http://flask.palletsprojects.com/",
|
"Documentation": "https://flask.palletsprojects.com/",
|
||||||
"Code": "https://github.com/pallets/flask",
|
"Code": "https://github.com/pallets/flask",
|
||||||
"Issue tracker": "https://github.com/pallets/flask/issues",
|
"Issue tracker": "https://github.com/pallets/flask/issues",
|
||||||
},
|
},
|
||||||
|
|
|
@ -57,4 +57,4 @@ from .signals import template_rendered
|
||||||
from .templating import render_template
|
from .templating import render_template
|
||||||
from .templating import render_template_string
|
from .templating import render_template_string
|
||||||
|
|
||||||
__version__ = "1.1.1.dev"
|
__version__ = "1.1.1"
|
||||||
|
|
Loading…
Reference in New Issue