diff --git a/falcon/version.py b/falcon/version.py index 1e7b2f0..410e015 100644 --- a/falcon/version.py +++ b/falcon/version.py @@ -16,7 +16,7 @@ limitations under the License. """ -VERSION_TUPLE = (0, 1, 6, '') +VERSION_TUPLE = (0, 1, 7, 'dev') version = '.'.join(map(str, VERSION_TUPLE[:-1])) + VERSION_TUPLE[-1] """Current version of Falcon.""" diff --git a/setup.cfg b/setup.cfg index b34e038..b727342 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [egg_info] -tag_build = +tag_build = dev [nosetests] where = falcon/tests