diff --git a/hydrodataset/__init__.py b/hydrodataset/__init__.py index fa916a2..2f68e59 100644 --- a/hydrodataset/__init__.py +++ b/hydrodataset/__init__.py @@ -12,7 +12,7 @@ __author__ = """Wenyu Ouyang""" __email__ = "wenyuouyang@outlook.com" -__version__ = '0.0.8' +__version__ = '0.1.0' # we use a .hydrodataset dir to save the setting hydrodataset_setting_dir = Path.home().joinpath(".hydrodataset") diff --git a/setup.cfg b/setup.cfg index 02b6518..3b65c49 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.8 +current_version = 0.1.0 commit = True tag = True diff --git a/setup.py b/setup.py index 8755164..2e0f723 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/OuyangWenyu/hydrodataset', - version='0.0.8', + version='0.1.0', zip_safe=False, )