From 85db0135cb302e2e17936fb4cf62c9f90c94e342 Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 10 Feb 2020 20:27:39 +0100 Subject: [PATCH 1/4] Pin Werkzeug < 1.0 for 0.12 (#3497) --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 983f7611..b523edc4 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ setup( zip_safe=False, platforms='any', install_requires=[ - 'Werkzeug>=0.7', + 'Werkzeug>=0.7,<1.0', 'Jinja2>=2.4', 'itsdangerous>=0.21', 'click>=2.0', From 8086ce8b9f17e53ce505206fde8e0de2739712ff Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 10 Feb 2020 20:30:54 +0100 Subject: [PATCH 2/4] Changelog for 0.12.5 --- CHANGES | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGES b/CHANGES index c69fd113..f642abc1 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,15 @@ Flask Changelog =============== +Version 0.12.5 +-------------- + +Released on February 10 2020 + +- Pin Werkzeug to < 1.0.0. (`#3497`_) + +.. _#3497: https://github.com/pallets/flask/issues/3497 + Version 0.12.4 -------------- From 191710cbda616a53533d5e794a787f24c453ac5a Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 10 Feb 2020 20:30:59 +0100 Subject: [PATCH 3/4] Bump version number to 0.12.5 --- flask/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/__init__.py b/flask/__init__.py index ade8fc78..83900a42 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -10,7 +10,7 @@ :license: BSD, see LICENSE for more details. """ -__version__ = '0.12.5.dev' +__version__ = '0.12.5' # utilities we import from Werkzeug and Jinja2 that are unused # in the module but are exported as public interface. From 79c71f24e4cb064852e2cbbfef78a0a051eb7ced Mon Sep 17 00:00:00 2001 From: Armin Ronacher Date: Mon, 10 Feb 2020 20:32:11 +0100 Subject: [PATCH 4/4] 0.12.6.dev --- flask/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/__init__.py b/flask/__init__.py index 83900a42..f122e638 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -10,7 +10,7 @@ :license: BSD, see LICENSE for more details. """ -__version__ = '0.12.5' +__version__ = '0.12.6.dev' # utilities we import from Werkzeug and Jinja2 that are unused # in the module but are exported as public interface.