diff --git a/nerodia/__init__.py b/nerodia/__init__.py index 92f138a..b0d9da3 100644 --- a/nerodia/__init__.py +++ b/nerodia/__init__.py @@ -2,7 +2,7 @@ from .logger import Logger -__version__ = '0.13.0' +__version__ = '0.14.0' ttc = None diff --git a/setup.py b/setup.py index d81afe3..ebbfa2b 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from distutils.command.install import INSTALL_SCHEMES -from os.path import dirname, join, abspath +from os.path import abspath, dirname, join from setuptools import setup from setuptools.command.install import install @@ -12,7 +12,7 @@ setup_args = { 'cmdclass': {'install': install}, 'name': 'nerodia', - 'version': '0.13.0', + 'version': '0.14.0', 'license': 'MIT', 'description': 'Python port of WATIR https://github.com/watir/watir', 'long_description': open(join(abspath(dirname(__file__)), 'README.rst')).read(),