From fc15199de6a97afae92d9668c4ae23c81fb93320 Mon Sep 17 00:00:00 2001 From: Hydrologie Helper Bot Date: Tue, 24 Sep 2024 17:00:49 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.3.7-dev.6=20=E2=86=92=200.3?= =?UTF-8?q?.7-dev.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cruft.json | 2 +- pyproject.toml | 2 +- src/xhydro/__init__.py | 2 +- tests/test_xhydro.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.cruft.json b/.cruft.json index 40b67efe..a1297bf3 100644 --- a/.cruft.json +++ b/.cruft.json @@ -11,7 +11,7 @@ "project_slug": "xhydro", "project_short_description": "Hydrological analysis library built with xarray.", "pypi_username": "TC-FF", - "version": "0.3.7-dev.6", + "version": "0.3.7-dev.7", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/pyproject.toml b/pyproject.toml index 920d394a..97c20bbc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -123,7 +123,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.3.7-dev.6" +current_version = "0.3.7-dev.7" commit = true commit_args = "--no-verify" tag = false diff --git a/src/xhydro/__init__.py b/src/xhydro/__init__.py index 9b0371c9..7944de3b 100644 --- a/src/xhydro/__init__.py +++ b/src/xhydro/__init__.py @@ -25,4 +25,4 @@ __author__ = """Thomas-Charles Fortier Filion""" __email__ = "tcff_hydro@outlook.com" -__version__ = "0.3.7-dev.6" +__version__ = "0.3.7-dev.7" diff --git a/tests/test_xhydro.py b/tests/test_xhydro.py index b984ed18..fc1994cf 100644 --- a/tests/test_xhydro.py +++ b/tests/test_xhydro.py @@ -35,4 +35,4 @@ def test_package_metadata(): contents = f.read() assert """Thomas-Charles Fortier Filion""" in contents assert '__email__ = "tcff_hydro@outlook.com"' in contents - assert '__version__ = "0.3.7-dev.6"' in contents + assert '__version__ = "0.3.7-dev.7"' in contents