Skip to content

Commit

Permalink
Prepare v0.16.1 (#425)
Browse files Browse the repository at this point in the history
### What kind of change does this PR introduce?

* Prepares the next patch version (v0.16.1)
* Corrects a misattributed change in the `CHANGELOG.rst`

### Does this PR introduce a breaking change?

No.
  • Loading branch information
Zeitsperre authored Dec 5, 2024
2 parents 8ee8195 + 8bf8a23 commit 696f6a2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
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.16.1-dev.2",
"version": "0.16.1",
"use_pytest": "y",
"use_black": "y",
"use_conda": "y",
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
Changelog
=========

v0.17.0 (unreleased)
v0.16.1 (2024-12-05)
--------------------

* Improved the HBV-EC emulator by reformatting some of the content (cosmetic changes), adding the spatial interpolation and the soil parameters for the TOPSOIL explicitly. (PR #410)
* Add support for `pymbolic` > 2022.2 (PR #420)
* Convert `SymConfig` to a dict to silence pydantic deprecation warnings (PR #420)
* Drop support for Python 3.9 (PR #420)
Expand All @@ -27,7 +29,6 @@ Internal changes
* Modified the sub-basin and channel profile extraction functions to correctly set the river length to zero and set default values for reach attributes in sub-basins with no channel routing (i.e., sub-basins with lakes or headwater basins). (issue #354, PR #401)
* Improved the HBV-EC emulator by adding parameter information (name, definition, and Raven default values), fixed the variable name for the adiabatic temperature lapse rate, and added an alias for rain snow fraction to match other emulators. (PR #404 and #408)
* Modified the `sphinx` configuration to better support SVG and to remove incompatible elements from the PDF build. (PR #407)
* Improved the HBV-EC emulator by reformatting some of the content (cosmetic changes), adding the spatial interpolation and the soil parameters for the TOPSOIL explicitly. (PR #410)

v0.15.0 (2024-06-20)
--------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.16.1-dev.2"
current_version = "0.16.1"
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 @@ -30,4 +30,4 @@

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

0 comments on commit 696f6a2

Please sign in to comment.