From b7eb59bed5a6b819eef9c2a70bc6a3710b362aef Mon Sep 17 00:00:00 2001 From: kgriffs Date: Fri, 19 Jul 2013 11:07:29 -0600 Subject: [PATCH] chore: Bump version to 0.1.7.dev1 --- falcon/__init__.py | 2 +- falcon/version.py | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/falcon/__init__.py b/falcon/__init__.py index e7a9b2d..37caab8 100644 --- a/falcon/__init__.py +++ b/falcon/__init__.py @@ -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 diff --git a/falcon/version.py b/falcon/version.py index 028605c..e57ae12 100644 --- a/falcon/version.py +++ b/falcon/version.py @@ -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.""" diff --git a/setup.cfg b/setup.cfg index aa668a8..90de39a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [egg_info] -tag_build = post2 +tag_build = dev1 [nosetests] where = falcon/tests diff --git a/setup.py b/setup.py index 85982a0..e34d2f9 100644 --- a/setup.py +++ b/setup.py @@ -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):