diff --git a/dye_score/__init__.py b/dye_score/__init__.py index c829c32..af93c94 100644 --- a/dye_score/__init__.py +++ b/dye_score/__init__.py @@ -4,6 +4,6 @@ __author__ = """Sarah Bird""" __email__ = 'fx-data-dev@mozilla.org' -__version__ = '0.1.0' +__version__ = '0.2.0' __all__ = ['DyeScore'] diff --git a/setup.cfg b/setup.cfg index ece32bb..c8c0d32 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = True @@ -18,9 +18,9 @@ universal = 1 exclude = docs [aliases] -# Define setup.py command aliases here test = pytest [tool:pytest] collect_ignore = ['setup.py'] addopts = --disable-warnings + diff --git a/setup.py b/setup.py index d9737f6..599c626 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/mozilla/dye-score', - version='0.1.0', + version='0.2.0', zip_safe=False, )