From 9b1123a779e95b5c38ca911ce1329e87a3348a92 Mon Sep 17 00:00:00 2001 From: David Lord Date: Tue, 14 May 2019 14:03:07 -0700 Subject: [PATCH] release version 0.15.3 --- CHANGES.rst | 2 +- src/werkzeug/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 70dbab9da..08a92cb4b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,7 +3,7 @@ Version 0.15.3 -------------- -Unreleased +Released 2019-05-14 - Properly handle multi-line header folding in development server in Python 2.7. (:issue:`1080`) diff --git a/src/werkzeug/__init__.py b/src/werkzeug/__init__.py index f9bc34a1e..64aa8afdd 100644 --- a/src/werkzeug/__init__.py +++ b/src/werkzeug/__init__.py @@ -17,7 +17,7 @@ import sys from types import ModuleType -__version__ = "0.15.2" +__version__ = "0.15.3" # This import magic raises concerns quite often which is why the implementation # and motivation is explained here in detail now.