From 7fe489f1e584a00efc8d54c1841f19ecca27d235 Mon Sep 17 00:00:00 2001 From: "bumpversion[bot]" Date: Wed, 2 Oct 2024 18:59:38 +0000 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.15.1-dev.0=20=E2=86=92=200.?= =?UTF-8?q?15.1-dev.1?= 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 fc0e37ea..57a97dbb 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.15.1-dev.0", + "version": "0.15.1-dev.1", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/pyproject.toml b/pyproject.toml index c71e62e1..bca5e43d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -166,7 +166,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.15.1-dev.0" +current_version = "0.15.1-dev.1" commit = true commit_args = "--no-verify" tag = false diff --git a/src/ravenpy/__init__.py b/src/ravenpy/__init__.py index abe5f393..de96c42c 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.15.1-dev.0" +__version__ = "0.15.1-dev.1" diff --git a/tests/test_ravenpy.py b/tests/test_ravenpy.py index 992c5dbc..42bf215f 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.15.1-dev.0"' in contents + assert '__version__ = "0.15.1-dev.1"' in contents