diff --git a/enlilviz/__init__.py b/enlilviz/__init__.py index c1711f5..9746877 100644 --- a/enlilviz/__init__.py +++ b/enlilviz/__init__.py @@ -2,7 +2,7 @@ __author__ = """Greg Lucas""" __email__ = 'greg.lucas@lasp.colorado.edu' -__version__ = '0.0.1' +__version__ = '0.1.0' from .io import read_enlil2d, read_evo __all__ = ['read_enlil2d', 'read_evo'] diff --git a/setup.cfg b/setup.cfg index a769542..d7c4707 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.1.0 commit = True tag = True @@ -18,9 +18,7 @@ universal = 1 exclude = docs [aliases] -# Define setup.py command aliases here test = pytest [tool:pytest] collect_ignore = ['setup.py'] - diff --git a/setup.py b/setup.py index 86f87c2..85c8588 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/SWxTREC/enlilviz', - version='0.0.1', + version='0.1.0', zip_safe=False, )