From 71eab19be2c83fb476de51275e2f9bdf69d5cc10 Mon Sep 17 00:00:00 2001 From: David Lord Date: Wed, 4 Sep 2019 13:09:26 -0700 Subject: [PATCH] release version 0.15.6 --- CHANGES.rst | 2 +- src/werkzeug/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index fe7e7393d..7c2c9076b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,7 +3,7 @@ Version 0.15.6 -------------- -Unreleased +Released 2019-09-04 - Work around a bug in pip that caused the reloader to fail on Windows when the script was an entry point. This fixes the issue diff --git a/src/werkzeug/__init__.py b/src/werkzeug/__init__.py index e5990c19d..2ce1a3cb0 100644 --- a/src/werkzeug/__init__.py +++ b/src/werkzeug/__init__.py @@ -17,7 +17,7 @@ import sys from types import ModuleType -__version__ = "0.15.5" +__version__ = "0.15.6" # This import magic raises concerns quite often which is why the implementation # and motivation is explained here in detail now.