Skip to content

Commit

Permalink
Merge pull request #4047 from pallets/maximum-versions
Browse files Browse the repository at this point in the history
set maximum versions for 1.1.x to avoid new major versions
  • Loading branch information
davidism committed May 13, 2021
2 parents 1672c5f + 6d8b4ce commit ae647b5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
10 changes: 6 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@



Version 1.1.x
Version 1.1.3
-------------

Not yet released.
Unreleased

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


Version 1.1.2
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
include_package_data=True,
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*",
install_requires=[
"Werkzeug>=0.15",
"Jinja2>=2.10.1",
"itsdangerous>=0.24",
"click>=5.1",
"Werkzeug >= 0.15, < 2.0",
"Jinja2 >= 2.10.1, < 3.0",
"itsdangerous >= 0.24, < 2.0",
"click >= 5.1, < 8.0",
],
extras_require={
"dotenv": ["python-dotenv"],
Expand Down
2 changes: 1 addition & 1 deletion src/flask/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@
from .templating import render_template
from .templating import render_template_string

__version__ = "1.1.2"
__version__ = "1.1.3.dev0"

0 comments on commit ae647b5

Please sign in to comment.