diff --git a/.cruft.json b/.cruft.json index cbd25f19..9b2cf280 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.19.1-dev.1", + "version": "0.19.1", "use_pytest": "y", "use_black": "y", "use_conda": "y", diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2f936eaf..0e33fbe1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,8 +2,24 @@ Changelog ========= -`Unreleased `_ (latest) -------------------------------------------------------------- +.. + `Unreleased `_ (latest) + ------------------------------------------------------------- + + Contributors: + + Changes + ^^^^^^^ + * No change. + + Fixes + ^^^^^ + * No change. + +.. _changes_0.19.1: + +`v0.19.1 `_ (2025-08-05) +--------------------------------------------------------------------------- Contributors: Trevor James Smith (:user:`Zeitsperre`). diff --git a/pyproject.toml b/pyproject.toml index bbf2d3a3..61164e3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -162,7 +162,7 @@ ravenpy = "ravenpy.cli:main" [tool] [tool.bumpversion] -current_version = "0.19.1-dev.1" +current_version = "0.19.1" commit = true commit_args = "--no-verify" tag = false @@ -199,7 +199,7 @@ replace = """\ .. _changes_{new_version}: `v{new_version} `_ ({now:%Y-%m-%d}) -------------------------------------------------------------------------- +--------------------------------------------------------------------------- """ [[tool.bumpversion.files]] diff --git a/src/ravenpy/__init__.py b/src/ravenpy/__init__.py index 1dc5a322..e2c5bfe7 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.19.1-dev.1" +__version__ = "0.19.1" diff --git a/tests/test_ravenpy.py b/tests/test_ravenpy.py index 87c715f4..83b4fb39 100644 --- a/tests/test_ravenpy.py +++ b/tests/test_ravenpy.py @@ -45,4 +45,4 @@ def test_package_metadata(): contents = f.read() assert """David Huard""" in contents assert '__email__ = "huard.david@ouranos.ca"' in contents - assert '__version__ = "0.19.1-dev.1"' in contents + assert '__version__ = "0.19.1"' in contents