From 479d61043936cd96066bc5d409263789cab4006c Mon Sep 17 00:00:00 2001 From: ouyangwenyu Date: Sat, 16 Mar 2024 15:41:07 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.8=20=E2=86=92=200.0.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hydroutils/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hydroutils/__init__.py b/hydroutils/__init__.py index 4e612f5..57c6399 100644 --- a/hydroutils/__init__.py +++ b/hydroutils/__init__.py @@ -10,6 +10,6 @@ __author__ = """Wenyu Ouyang""" __email__ = 'wenyuouyang@outlook.com' -__version__ = '0.0.8' +__version__ = '0.0.9' from .hydro_log import * diff --git a/setup.cfg b/setup.cfg index 35c2187..e7c3a2a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.8 +current_version = 0.0.9 commit = True tag = True diff --git a/setup.py b/setup.py index d3d8b06..4c846fe 100644 --- a/setup.py +++ b/setup.py @@ -99,7 +99,7 @@ def run(self): test_suite="tests", tests_require=test_requirements, url="https://github.com/OuyangWenyu/hydroutils", - version='0.0.8', + version='0.0.9', zip_safe=False, cmdclass={ "install": PostInstallCommand,