From 084af2452812c46700d6aafc8075109f774bab81 Mon Sep 17 00:00:00 2001 From: David Lord Date: Tue, 19 Mar 2019 07:48:09 -0700 Subject: [PATCH] release 0.15.0 --- CHANGES.rst | 6 +++--- src/werkzeug/__init__.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e3207d35a..448110166 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,9 +1,9 @@ .. currentmodule:: werkzeug -Version 0.15 ------------- +Version 0.15.0 +-------------- -Unreleased +Released 2019-03-19 - Building URLs is ~7x faster. Each :class:`~routing.Rule` compiles an optimized function for building itself. (:pr:`1281`) diff --git a/src/werkzeug/__init__.py b/src/werkzeug/__init__.py index 5a0c4e9e3..5e0652482 100644 --- a/src/werkzeug/__init__.py +++ b/src/werkzeug/__init__.py @@ -17,7 +17,7 @@ import sys from types import ModuleType -__version__ = "0.15.dev" +__version__ = "0.15.0" # This import magic raises concerns quite often which is why the implementation # and motivation is explained here in detail now.