From e2a16f96a8638fdb50deae6221dba37be6277242 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Sat, 14 Jan 2017 11:24:31 -0600 Subject: [PATCH] Increment version to 0.2.0 --- sanic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/__init__.py b/sanic/__init__.py index 6b9b3a80..6f529eea 100644 --- a/sanic/__init__.py +++ b/sanic/__init__.py @@ -1,6 +1,6 @@ from .sanic import Sanic from .blueprints import Blueprint -__version__ = '0.1.9' +__version__ = '0.2.0' __all__ = ['Sanic', 'Blueprint']