From 084f0d27a3dbb5b93f0e544b9f0c762fba31acc3 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Tue, 11 Apr 2017 15:19:00 -0500 Subject: [PATCH] Increment to 0.5.0 --- sanic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/__init__.py b/sanic/__init__.py index b67a3a6a..7bf0994a 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.4.1' +__version__ = '0.5.0' __all__ = ['Sanic', 'Blueprint']