Skip to content

Commit 677c8a1

Browse files
authored
Prepare v0.18.0 (#462)
### What kind of change does this PR introduce? * Prepares the next minor release (v0.18.0) ### Does this PR introduce a breaking change? No.
2 parents b1e4662 + 6ed34e8 commit 677c8a1

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.cruft.json

+1-1
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.17.1-dev.6",
13+
"version": "0.18.0",
1414
"use_pytest": "y",
1515
"use_black": "y",
1616
"use_conda": "y",

CHANGELOG.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Changelog
33
=========
44

5-
v0.18.0 (unreleased)
5+
v0.18.0 (2025-04-03)
66
--------------------
77

88
New features

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ target-version = [
165165
]
166166

167167
[tool.bumpversion]
168-
current_version = "0.17.1-dev.6"
168+
current_version = "0.18.0"
169169
commit = true
170170
commit_args = "--no-verify"
171171
tag = false

src/ravenpy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@
3030

3131
__author__ = """David Huard"""
3232
__email__ = "huard.david@ouranos.ca"
33-
__version__ = "0.17.1-dev.6"
33+
__version__ = "0.18.0"

tests/test_ravenpy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ def test_package_metadata():
4747
contents = f.read()
4848
assert """David Huard""" in contents
4949
assert '__email__ = "huard.david@ouranos.ca"' in contents
50-
assert '__version__ = "0.17.1-dev.6"' in contents
50+
assert '__version__ = "0.18.0"' in contents

0 commit comments

Comments
 (0)