From 867226e03b50a8d41a7772f061aa6b316066be15 Mon Sep 17 00:00:00 2001 From: ouyangwenyu Date: Mon, 19 Feb 2024 19:59:49 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.7=20=E2=86=92=200.0.8?= 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 00ef5b3..4e612f5 100644 --- a/hydroutils/__init__.py +++ b/hydroutils/__init__.py @@ -10,6 +10,6 @@ __author__ = """Wenyu Ouyang""" __email__ = 'wenyuouyang@outlook.com' -__version__ = '0.0.7' +__version__ = '0.0.8' from .hydro_log import * diff --git a/setup.cfg b/setup.cfg index 68cccb2..35c2187 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.7 +current_version = 0.0.8 commit = True tag = True diff --git a/setup.py b/setup.py index d00d054..d3d8b06 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.7', + version='0.0.8', zip_safe=False, cmdclass={ "install": PostInstallCommand,