From db6fc697c3fa954eaf3ceff5247613820bbeeb0f Mon Sep 17 00:00:00 2001
From: Joeri van Engelen <joerivanengelen@hotmail.com>
Date: Thu, 16 May 2024 10:53:51 +0200
Subject: [PATCH] Release 0.17.1 (#1042)

# Description
Prepare 0.17.1 release

# Checklist

- [ ] Links to correct issue
- [x] Update changelog, if changes affect users
- [ ] PR title starts with ``Issue #nr``, e.g. ``Issue #737``
- [ ] Unit tests were added
- [ ] **If feature added**: Added/extended example
---
 docs/api/changelog.rst | 8 ++++++--
 imod/__init__.py       | 2 +-
 pixi.toml              | 2 +-
 3 files changed, 8 insertions(+), 4 deletions(-)

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 <huite.bootsma@deltares.nl>", ]
 channels = ["conda-forge", ]