Skip to content

Commit 5bd959f

Browse files
committed
Merge branch '1.1.x' into 2.0.x
2 parents f3551c8 + c04b0de commit 5bd959f

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

CHANGES.rst

+11
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,17 @@ Released 2021-05-11
107107
- Add type hinting. :pr:`3973`.
108108

109109

110+
Version 1.1.3
111+
-------------
112+
113+
Released 2021-05-13
114+
115+
- Set maximum versions of Werkzeug, Jinja, Click, and ItsDangerous.
116+
:issue:`4043`
117+
- Re-add support for passing a ``pathlib.Path`` for ``static_folder``.
118+
:pr:`3579`
119+
120+
110121
Version 1.1.2
111122
-------------
112123

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
setup(
55
name="Flask",
66
install_requires=[
7-
"Werkzeug>=2.0",
8-
"Jinja2>=3.0",
9-
"itsdangerous>=2.0",
10-
"click>=7.1.2",
7+
"Werkzeug >= 2.0",
8+
"Jinja2 >= 3.0",
9+
"itsdangerous >= 2.0",
10+
"click >= 7.1.2",
1111
],
1212
extras_require={
13-
"async": ["asgiref>=3.2"],
13+
"async": ["asgiref >= 3.2"],
1414
"dotenv": ["python-dotenv"],
1515
},
1616
)

0 commit comments

Comments
 (0)