diff --git a/.cruft.json b/.cruft.json index 71a337e6..36b85603 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.2-dev.6", + "version": "0.17.0", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5c65e621..6611b8b0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,7 @@ Changelog ========= -v0.17.0 (unreleased) +v0.17.0 (2025-01-27) -------------------- * Updated the cookiecutter template to the latest commit and synchronized dependencies between PyPI and Anaconda recipes. (PR #427) diff --git a/pyproject.toml b/pyproject.toml index f54ab01d..2cf095aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -168,7 +168,7 @@ target-version = [ ] [tool.bumpversion] -current_version = "0.16.2-dev.6" +current_version = "0.17.0" commit = true commit_args = "--no-verify" tag = false diff --git a/src/ravenpy/__init__.py b/src/ravenpy/__init__.py index af73fb2c..1fd004a7 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.2-dev.6" +__version__ = "0.17.0" diff --git a/tests/test_ravenpy.py b/tests/test_ravenpy.py index 0297d4e7..7f684b00 100644 --- a/tests/test_ravenpy.py +++ b/tests/test_ravenpy.py @@ -47,4 +47,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.2-dev.6"' in contents + assert '__version__ = "0.17.0"' in contents