diff --git a/.cruft.json b/.cruft.json index c6133680..7869c108 100644 --- a/.cruft.json +++ b/.cruft.json @@ -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.12.3", + "version": "0.13.0", "use_pytest": "y", "use_black": "y", "use_pypi_deployment_with_travis": "y", diff --git a/HISTORY.rst b/HISTORY.rst index 6361225b..c3ae05f8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,10 +2,16 @@ History ======= -0.13 (unreleased) +0.13 (2023-01-10) ----------------- -* Fixed problem with scalar elevation in netCDF files parsed with `nc_specs` (issue #279) -* Added notebook on sensitivity analysis. +* Fixed problem with scalar elevation in netCDF files parsed with `nc_specs` (issue #279, PR #323) +* Added notebook on sensitivity analysis (PR #320) +* Updated Notebooks 03 and 04 (PR #319) +* Upgrade to pydantic v2 (PR #326) +* Pin cf-xarray for Python3.8 (PR #325) +* Fix Coveralls Workflows (PR #328) +* Fix notebook execution (PR #329) +* Refactor and simplify testing data fetching (PR #332) Breaking changes ^^^^^^^^^^^^^^^^ diff --git a/ravenpy/__version__.py b/ravenpy/__version__.py index f213e71b..a35577cf 100644 --- a/ravenpy/__version__.py +++ b/ravenpy/__version__.py @@ -4,4 +4,4 @@ __author__ = "David Huard" __email__ = "huard.david@ouranos.ca" -__version__ = "0.12.3" +__version__ = "0.13.0" diff --git a/setup.cfg b/setup.cfg index 697227b3..6e0bef23 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.12.3 +current_version = 0.13.0 commit = True tag = False @@ -66,4 +66,3 @@ statistics = True [pydocstyle] convention = numpy match = ((?!(test_|conftest|conf)).)*\.py -