From 1ea3ab7fe8ab03a6ddf4d75a3de8cb719f4c584c Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Tue, 5 Dec 2017 19:13:16 -0800 Subject: [PATCH] Increment to 0.7.0 Signed-off-by: Eli Uriegas --- sanic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/__init__.py b/sanic/__init__.py index 8f35a283..78bc7bd9 100644 --- a/sanic/__init__.py +++ b/sanic/__init__.py @@ -1,6 +1,6 @@ from sanic.app import Sanic from sanic.blueprints import Blueprint -__version__ = '0.6.0' +__version__ = '0.7.0' __all__ = ['Sanic', 'Blueprint']