Compare commits
2 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
735a4701d6 | ||
|
|
efe39ae5c4 |
4 changed files with 7 additions and 6 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
Version 3.0.0
|
Version 3.0.0
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
Unreleased
|
Released 2023-09-30
|
||||||
|
|
||||||
- Remove previously deprecated code. :pr:`5223`
|
- Remove previously deprecated code. :pr:`5223`
|
||||||
- Deprecate the ``__version__`` attribute. Use feature detection, or
|
- Deprecate the ``__version__`` attribute. Use feature detection, or
|
||||||
|
|
@ -9,6 +9,7 @@ Unreleased
|
||||||
- Restructure the code such that the Flask (app) and Blueprint
|
- Restructure the code such that the Flask (app) and Blueprint
|
||||||
classes have Sans-IO bases. :pr:`5127`
|
classes have Sans-IO bases. :pr:`5127`
|
||||||
- Allow self as an argument to url_for. :pr:`5264`
|
- Allow self as an argument to url_for. :pr:`5264`
|
||||||
|
- Require Werkzeug >= 3.0.0.
|
||||||
|
|
||||||
|
|
||||||
Version 2.3.3
|
Version 2.3.3
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "Flask"
|
name = "Flask"
|
||||||
version = "3.0.0.dev"
|
version = "3.0.0"
|
||||||
description = "A simple framework for building complex web applications."
|
description = "A simple framework for building complex web applications."
|
||||||
readme = "README.rst"
|
readme = "README.rst"
|
||||||
license = {file = "LICENSE.rst"}
|
license = {file = "LICENSE.rst"}
|
||||||
|
|
@ -20,7 +20,7 @@ classifiers = [
|
||||||
]
|
]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"Werkzeug>=2.3.7",
|
"Werkzeug>=3.0.0",
|
||||||
"Jinja2>=3.1.2",
|
"Jinja2>=3.1.2",
|
||||||
"itsdangerous>=2.1.2",
|
"itsdangerous>=2.1.2",
|
||||||
"click>=8.1.3",
|
"click>=8.1.3",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
Werkzeug==2.3.7
|
Werkzeug==3.0.0
|
||||||
Jinja2==3.1.2
|
Jinja2==3.1.2
|
||||||
MarkupSafe==2.1.1
|
MarkupSafe==2.1.1
|
||||||
itsdangerous==2.1.2
|
itsdangerous==2.1.2
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# SHA1:fe057f95a98251b053eec8fa27df0feb722c70e8
|
# SHA1:fbb9fae044c2e7d895de9b3d7cbb40a11a822f04
|
||||||
#
|
#
|
||||||
# This file is autogenerated by pip-compile-multi
|
# This file is autogenerated by pip-compile-multi
|
||||||
# To update, run:
|
# To update, run:
|
||||||
|
|
@ -18,5 +18,5 @@ markupsafe==2.1.1
|
||||||
# -r requirements/tests-pallets-min.in
|
# -r requirements/tests-pallets-min.in
|
||||||
# jinja2
|
# jinja2
|
||||||
# werkzeug
|
# werkzeug
|
||||||
werkzeug==2.3.7
|
werkzeug==3.0.0
|
||||||
# via -r requirements/tests-pallets-min.in
|
# via -r requirements/tests-pallets-min.in
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue