Skip to content

Commit ae647b5

Browse files
authored
Merge pull request #4047 from pallets/maximum-versions
set maximum versions for 1.1.x to avoid new major versions
2 parents 1672c5f + 6d8b4ce commit ae647b5

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

CHANGES.rst

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22

33

44

5-
Version 1.1.x
5+
Version 1.1.3
66
-------------
77

8-
Not yet released.
8+
Unreleased
99

10-
- Officially support passing a :class:`pathlib.Path` for
11-
``static_folder`` which stopped working in 1.1.2. :pr:`3579`
10+
- Set maximum versions of Werkzeug, Jinja, Click, and ItsDangerous.
11+
:issue:`4043`
12+
- Re-add support for passing a ``pathlib.Path`` for ``static_folder``.
13+
:pr:`3579`
1214

1315

1416
Version 1.1.2

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@
5353
include_package_data=True,
5454
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
5555
install_requires=[
56-
"Werkzeug>=0.15",
57-
"Jinja2>=2.10.1",
58-
"itsdangerous>=0.24",
59-
"click>=5.1",
56+
"Werkzeug >= 0.15, < 2.0",
57+
"Jinja2 >= 2.10.1, < 3.0",
58+
"itsdangerous >= 0.24, < 2.0",
59+
"click >= 5.1, < 8.0",
6060
],
6161
extras_require={
6262
"dotenv": ["python-dotenv"],

src/flask/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@
5757
from .templating import render_template
5858
from .templating import render_template_string
5959

60-
__version__ = "1.1.2"
60+
__version__ = "1.1.3.dev0"

0 commit comments

Comments
 (0)