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.