Skip to content

Commit

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

* Prepares the next minor release (v0.16.0)

### Does this PR introduce a breaking change?

No.
  • Loading branch information
Zeitsperre authored Oct 18, 2024
2 parents b39f3b2 + 80939e4 commit 6d8e00a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.15.1-dev.4",
"version": "0.16.0",
"use_pytest": "y",
"use_black": "y",
"use_conda": "y",
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changelog
=========

v0.16.0 (unreleased)
v0.16.0 (2024-10-18)
--------------------

* Set base required `geopandas` to v1.0. (PR #394)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ target-version = [
]

[tool.bumpversion]
current_version = "0.15.1-dev.4"
current_version = "0.16.0"
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__ = "huard.david@ouranos.ca"
__version__ = "0.15.1-dev.4"
__version__ = "0.16.0"
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__ = "huard.david@ouranos.ca"' in contents
assert '__version__ = "0.15.1-dev.4"' in contents
assert '__version__ = "0.16.0"' in contents

0 comments on commit 6d8e00a

Please sign in to comment.