From 6da84202cf535d6e8121e6fa23179434640f5cfe Mon Sep 17 00:00:00 2001 From: "bumpversion[bot]" Date: Mon, 2 Dec 2024 16:32:03 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.16.1-dev.1=20=E2=86=92=200.?= =?UTF-8?q?16.1-dev.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cruft.json | 2 +- pyproject.toml | 2 +- src/ravenpy/__init__.py | 2 +- tests/test_ravenpy.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.cruft.json b/.cruft.json index cce88f6e..c96b7da7 100644 --- a/.cruft.json +++ b/.cruft.json @@ -10,7 +10,7 @@ "project_slug": "ravenpy", "project_short_description": "A Python wrapper to setup and run the hydrologic modelling framework Raven.", "pypi_username": "CSHS-CWRA", - "version": "0.16.1-dev.1", + "version": "0.16.1-dev.2", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/pyproject.toml b/pyproject.toml index 7c4a57c0..afd29a75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -166,7 +166,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.16.1-dev.1" +current_version = "0.16.1-dev.2" commit = true commit_args = "--no-verify" tag = false diff --git a/src/ravenpy/__init__.py b/src/ravenpy/__init__.py index 4282e6ee..14364cbf 100644 --- a/src/ravenpy/__init__.py +++ b/src/ravenpy/__init__.py @@ -30,4 +30,4 @@ __author__ = """David Huard""" __email__ = "huard.david@ouranos.ca" -__version__ = "0.16.1-dev.1" +__version__ = "0.16.1-dev.2" diff --git a/tests/test_ravenpy.py b/tests/test_ravenpy.py index 3f312cab..79c44756 100644 --- a/tests/test_ravenpy.py +++ b/tests/test_ravenpy.py @@ -43,4 +43,4 @@ def test_package_metadata(): contents = f.read() assert """David Huard""" in contents assert '__email__ = "huard.david@ouranos.ca"' in contents - assert '__version__ = "0.16.1-dev.1"' in contents + assert '__version__ = "0.16.1-dev.2"' in contents