From 12f1e7e70445028f7c4b789b8cf229476b9868be Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 16 Jun 2011 17:18:06 -0400 Subject: [PATCH] added flask.__version__. Fixes #216. --- flask/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flask/__init__.py b/flask/__init__.py index 1274e766..f100fe65 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -10,6 +10,9 @@ :license: BSD, see LICENSE for more details. """ +__version__ = '0.6.1' + + # utilities we import from Werkzeug and Jinja2 that are unused # in the module but are exported as public interface. from werkzeug import abort, redirect