From 4d33abd2aabc56e52bac3600c4af74f553c3c046 Mon Sep 17 00:00:00 2001 From: kgriffs Date: Thu, 4 Apr 2013 09:54:43 -0400 Subject: [PATCH] chore: Bumped version to 0.1.4-dev --- falcon/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/falcon/version.py b/falcon/version.py index 9140ef6..40b9575 100644 --- a/falcon/version.py +++ b/falcon/version.py @@ -16,7 +16,7 @@ limitations under the License. """ -VERSION_TUPLE = (0, 1, 3, '') +VERSION_TUPLE = (0, 1, 4, '-dev') version = '.'.join(map(str, VERSION_TUPLE[:-1])) + VERSION_TUPLE[-1] """Current version of Falcon."""