Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v0.16.0 #409

Merged
merged 4 commits into from
Oct 18, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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.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-17)
--------------------

* 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