diff --git a/docs/api/changelog.rst b/docs/api/changelog.rst index 5848a5aa7..129a8e815 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.1] - 2024-05-16 +--------------------- Added ~~~~~ @@ -24,6 +24,10 @@ Changed :meth:`imod.mf6.GroundwaterTransportModel.dump` write with necessary attributes to NetCDF to make these files interpretable for GDAL (and so QGIS). +Fixed +~~~~~ +- Fix missing API docs for ``dump`` and ``write`` methods. + [0.17.0] - 2024-05-13 --------------------- diff --git a/imod/__init__.py b/imod/__init__.py index 7fafd72c9..48395bf9b 100644 --- a/imod/__init__.py +++ b/imod/__init__.py @@ -15,4 +15,4 @@ ) from imod.formats import gen, idf, ipf, prj, rasterio -__version__ = "0.17.0" +__version__ = "0.17.1" diff --git a/pixi.toml b/pixi.toml index 8ea6a47fa..35857065f 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "imod-python" -version = "0.17.0" +version = "0.17.1" description = "Make massive MODFLOW models" authors = ["Deltares ", ] channels = ["conda-forge", ]