diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index b5ebc2434..de9df2514 100644 --- a/docs/api/changelog.rst +++ b/docs/api/changelog.rst @@ -6,8 +6,8 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog`_, and this project adheres to `Semantic Versioning`_. -[Unreleased] ------------- +[0.17.0] - 2024-05-13 +--------------------- Added ~~~~~ @@ -32,14 +32,6 @@ Added - Added validation for ``linear_acceleration``, ``rclose_option``, ``scaling_method``, ``reordering_method``, ``print_option`` and ``no_ptc`` entries in :class:`imod.mf6.Solution`. -- :func:`imod.mf6.open_cbc` now returns arrays which contain np.nan for cells where - budget variables are not defined. Based on new budget output a disquisition between - active cells but zero flow and inactive cells can be made. -- :func:`imod.mf6.open_cbc` now returns package type in return budget names. New format - is "package type"-"optional package variable"_"package name". E.g. a River package - named ``primary-sys`` will get a budget name ``riv_primary-sys``. An UZF package - with name ``uzf-sys1`` will get a budget name ``uzf-gwrch_uzf-sys1`` for the - groundwater recharge budget from the UZF-CBC. Fixed ~~~~~ @@ -59,6 +51,15 @@ Changed - Removed constructor arguments `source` and `target` from :class:`imod.mf6.utilities.regrid.RegridderWeightsCache`, as they were not used. +- :func:`imod.mf6.open_cbc` now returns arrays which contain np.nan for cells where + budget variables are not defined. Based on new budget output a disquisition between + active cells but zero flow and inactive cells can be made. +- :func:`imod.mf6.open_cbc` now returns package type in return budget names. New format + is "package type"-"optional package variable"_"package name". E.g. a River package + named ``primary-sys`` will get a budget name ``riv_primary-sys``. An UZF package + with name ``uzf-sys1`` will get a budget name ``uzf-gwrch_uzf-sys1`` for the + groundwater recharge budget from the UZF-CBC. + [0.16.0] - 2024-03-29 --------------------- diff --git a/imod/__init__.py b/imod/__init__.py index 9e465263a..7fafd72c9 100644 --- a/imod/__init__.py +++ b/imod/__init__.py @@ -15,4 +15,4 @@ ) from imod.formats import gen, idf, ipf, prj, rasterio -__version__ = "0.16.0" +__version__ = "0.17.0" diff --git a/pixi.toml b/pixi.toml index 480ffa948..8ea6a47fa 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "imod-python" -version = "0.16.0" +version = "0.17.0" description = "Make massive MODFLOW models" authors = ["Deltares ", ] channels = ["conda-forge", ]