From 3f63222d6f78710313300b07e443797d13d3fd7c Mon Sep 17 00:00:00 2001 From: Trevor James Smith <10819524+Zeitsperre@users.noreply.github.com> Date: Tue, 5 Aug 2025 15:58:51 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.19.1-dev.1=20=E2=86=92=200.?= =?UTF-8?q?19.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cruft.json | 2 +- CHANGELOG.rst | 20 ++++++++++++++++++-- pyproject.toml | 4 ++-- src/ravenpy/__init__.py | 2 +- tests/test_ravenpy.py | 2 +- 5 files changed, 23 insertions(+), 7 deletions(-) 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