From 9fcf72506187222b206f89d7185f757ed81624fc Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Tue, 28 Feb 2017 08:55:04 -0600 Subject: [PATCH] Increment version to 0.4.1 --- sanic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/__init__.py b/sanic/__init__.py index 73059515..b67a3a6a 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.0' +__version__ = '0.4.1' __all__ = ['Sanic', 'Blueprint']