chore: Bump version to 0.1.7.dev1
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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."""
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[egg_info]
|
||||
tag_build = post2
|
||||
tag_build = dev1
|
||||
|
||||
[nosetests]
|
||||
where = falcon/tests
|
||||
|
||||
Reference in New Issue
Block a user