Skip to content

Commit 1ce0f77

Browse files
committed
Merge branch '2.0.x'
2 parents 4240ace + 5bd959f commit 1ce0f77

File tree

2 files changed

+16
-5
lines changed

2 files changed

+16
-5
lines changed

Diff for: CHANGES.rst

+11
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,17 @@ Released 2021-05-11
115115
- Add type hinting. :pr:`3973`.
116116

117117

118+
Version 1.1.3
119+
-------------
120+
121+
Released 2021-05-13
122+
123+
- Set maximum versions of Werkzeug, Jinja, Click, and ItsDangerous.
124+
:issue:`4043`
125+
- Re-add support for passing a ``pathlib.Path`` for ``static_folder``.
126+
:pr:`3579`
127+
128+
118129
Version 1.1.2
119130
-------------
120131

Diff for: 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>=8.0",
7+
"Werkzeug >= 2.0",
8+
"Jinja2 >= 3.0",
9+
"itsdangerous >= 2.0",
10+
"click >= 8.0",
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)