Skip to content

Commit 3f63222

Browse files
committed
Bump version: 0.19.1-dev.1 → 0.19.1
1 parent 9e2d646 commit 3f63222

File tree

5 files changed

+23
-7
lines changed

5 files changed

+23
-7
lines changed

.cruft.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"project_slug": "ravenpy",
1111
"project_short_description": "A Python wrapper to setup and run the hydrologic modelling framework Raven.",
1212
"pypi_username": "CSHS-CWRA",
13-
"version": "0.19.1-dev.1",
13+
"version": "0.19.1",
1414
"use_pytest": "y",
1515
"use_black": "y",
1616
"use_conda": "y",

CHANGELOG.rst

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,24 @@
22
Changelog
33
=========
44

5-
`Unreleased <https://github.com/CSHS-CWRA/RavenPy>`_ (latest)
6-
-------------------------------------------------------------
5+
..
6+
`Unreleased <https://github.com/CSHS-CWRA/RavenPy>`_ (latest)
7+
-------------------------------------------------------------
8+
9+
Contributors:
10+
11+
Changes
12+
^^^^^^^
13+
* No change.
14+
15+
Fixes
16+
^^^^^
17+
* No change.
18+
19+
.. _changes_0.19.1:
20+
21+
`v0.19.1 <https://github.com/CSHS-CWRA/RavenPy/tree/v0.19.1>`_ (2025-08-05)
22+
---------------------------------------------------------------------------
723

824
Contributors: Trevor James Smith (:user:`Zeitsperre`).
925

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ ravenpy = "ravenpy.cli:main"
162162
[tool]
163163

164164
[tool.bumpversion]
165-
current_version = "0.19.1-dev.1"
165+
current_version = "0.19.1"
166166
commit = true
167167
commit_args = "--no-verify"
168168
tag = false
@@ -199,7 +199,7 @@ replace = """\
199199
.. _changes_{new_version}:
200200
201201
`v{new_version} <https://github.com/CSHS-CWRA/RavenPy/tree/v{new_version}>`_ ({now:%Y-%m-%d})
202-
-------------------------------------------------------------------------
202+
---------------------------------------------------------------------------
203203
"""
204204

205205
[[tool.bumpversion.files]]

src/ravenpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030

3131
__author__ = """David Huard"""
3232
__email__ = "[email protected]"
33-
__version__ = "0.19.1-dev.1"
33+
__version__ = "0.19.1"

tests/test_ravenpy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ def test_package_metadata():
4545
contents = f.read()
4646
assert """David Huard""" in contents
4747
assert '__email__ = "[email protected]"' in contents
48-
assert '__version__ = "0.19.1-dev.1"' in contents
48+
assert '__version__ = "0.19.1"' in contents

0 commit comments

Comments
 (0)