Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.18.2-dev.0",
"version": "0.18.2",
"use_pytest": "y",
"use_black": "y",
"use_conda": "y",
Expand Down
6 changes: 2 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@
Changelog
=========

v0.18.2 (unreleased)
v0.18.2 (2025-04-28)
--------------------

New features
^^^^^^^^^^^^
* Added RelativeHumidityMethod to RVIs. (PR #490)


* Added RelativeHumidityMethod to RVIs. (PR #490).

v0.18.1 (2025-04-15)
--------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.18.2-dev.0"
current_version = "0.18.2"
commit = true
commit_args = "--no-verify"
tag = false
Expand Down
2 changes: 1 addition & 1 deletion src/ravenpy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@

__author__ = """David Huard"""
__email__ = "[email protected]"
__version__ = "0.18.2-dev.0"
__version__ = "0.18.2"
2 changes: 1 addition & 1 deletion tests/test_ravenpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ def test_package_metadata():
contents = f.read()
assert """David Huard""" in contents
assert '__email__ = "[email protected]"' in contents
assert '__version__ = "0.18.2-dev.0"' in contents
assert '__version__ = "0.18.2"' in contents
Loading