From bed999e2183bb63564a0b7bb61337a4d1b6b46b2 Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:19:12 -0400 Subject: [PATCH 1/4] update CHANGELOG.rst --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 096136c5..cb5e22bd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ========= -v0.16.0 (unreleased) +v0.16.0 (2024-10-17) -------------------- * Set base required `geopandas` to v1.0. (PR #394) From 90c13ffddab0e5901c48f60def1392c4c95478e6 Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:24:49 -0400 Subject: [PATCH 2/4] =?UTF-8?q?Bump=20version:=200.15.1-dev.4=20=E2=86=92?= =?UTF-8?q?=200.16.0-dev.0?= 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 95d2f37e..2697c847 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.4", + "version": "0.16.0-dev.0", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/pyproject.toml b/pyproject.toml index 8031d3aa..668abfba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -168,7 +168,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.15.1-dev.4" +current_version = "0.16.0-dev.0" commit = true commit_args = "--no-verify" tag = false diff --git a/src/ravenpy/__init__.py b/src/ravenpy/__init__.py index 1a30ec55..f89e5d54 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.4" +__version__ = "0.16.0-dev.0" diff --git a/tests/test_ravenpy.py b/tests/test_ravenpy.py index 91848828..15ee4713 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.4"' in contents + assert '__version__ = "0.16.0-dev.0"' in contents From 00949106e4b3b44adb41d4b63cc43e4f251399fb Mon Sep 17 00:00:00 2001 From: Zeitsperre <10819524+Zeitsperre@users.noreply.github.com> Date: Thu, 17 Oct 2024 15:24:59 -0400 Subject: [PATCH 3/4] =?UTF-8?q?Bump=20version:=200.16.0-dev.0=20=E2=86=92?= =?UTF-8?q?=200.16.0?= 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 2697c847..b64581b0 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.0-dev.0", + "version": "0.16.0", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/pyproject.toml b/pyproject.toml index 668abfba..9bc57f69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -168,7 +168,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.16.0-dev.0" +current_version = "0.16.0" commit = true commit_args = "--no-verify" tag = false diff --git a/src/ravenpy/__init__.py b/src/ravenpy/__init__.py index f89e5d54..68861ba2 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.0-dev.0" +__version__ = "0.16.0" diff --git a/tests/test_ravenpy.py b/tests/test_ravenpy.py index 15ee4713..c7bf178e 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.0-dev.0"' in contents + assert '__version__ = "0.16.0"' in contents From 80939e44f9b85982976258b8fc5354461090c852 Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Fri, 18 Oct 2024 11:04:43 -0400 Subject: [PATCH 4/4] update CHANGELOG.rst --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index cb5e22bd..b64cb591 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ========= -v0.16.0 (2024-10-17) +v0.16.0 (2024-10-18) -------------------- * Set base required `geopandas` to v1.0. (PR #394)