chore: Bump version to 0.1.7.dev1

This commit is contained in:
kgriffs
2013-07-19 11:07:29 -06:00
parent 235795f5f0
commit b7eb59bed5
4 changed files with 5 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ DEFAULT_MEDIA_TYPE = 'application/json; charset=utf-8'
# Hoist classes and functions into the falcon namespace
from falcon.version import version # NOQA
from falcon.version import __version__ # NOQA
from falcon.api import API, DEFAULT_MEDIA_TYPE # NOQA
from falcon.status_codes import * # NOQA
from falcon.exceptions import * # NOQA

View File

@@ -16,7 +16,7 @@ limitations under the License.
"""
VERSION_TUPLE = (0, 1, 6, 'post2')
VERSION_TUPLE = (0, 1, 7, 'dev1')
version = '.'.join(map(str, VERSION_TUPLE))
__version__ = '.'.join(map(str, VERSION_TUPLE))
"""Current version of Falcon."""

View File

@@ -1,5 +1,5 @@
[egg_info]
tag_build = post2
tag_build = dev1
[nosetests]
where = falcon/tests

View File

@@ -4,7 +4,7 @@ from os import path
from setuptools import setup, find_packages, Extension
VERSION = imp.load_source('version', path.join('.', 'falcon', 'version.py'))
VERSION = VERSION.version
VERSION = VERSION.__version__
REQUIRES = ['six']
if sys.version_info < (2, 7):