From b0231e95949d4b003cebda87ec2f84449cca442b Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Thu, 7 Dec 2023 09:05:05 +1300 Subject: [PATCH] RLS: 0.7 --- CITATION.cff | 4 ++-- README.md | 2 +- docs/source/changelog.rst | 12 ++++++++++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index af60300..7867b48 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -2,8 +2,8 @@ cff-version: 1.2.0 message: "Please cite this software using these metadata." type: software title: "Surface water network" -version: "0.6" -date-released: "2023-05-25" +version: "0.7" +date-released: "2023-12-07" doi: 10.5281/zenodo.6866082 abstract: "A Python package to create and analyze surface water networks." repository-artifact: https://pypi.org/project/surface-water-network diff --git a/README.md b/README.md index 89c7433..f407ce6 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Python 3.8+ is required. ### Optional - - `flopy` - read/write MODFLOW models + - `flopy >=3.3.6` - read/write MODFLOW models - `netCDF4` - used to read TopNet files ## Testing diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 73867cf..f5d5b7c 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,18 @@ Change log .. currentmodule:: swn +Version 0.7 +----------- + +:Date: 7 December 2023 + +This is primarily a maintenance release. + +- Require FloPy 3.3.6 or later (:pr:`80`) +- Accommodate different reach index names ``rno`` or ``ifno`` since FloPy 3.5.0 (:pr:`83`) +- Maintenance updates to work with the latest pandas and FloPy releases (:pr:`91`) +- Update :py:meth:`swn.file.gdf_to_shapefile` to keep number data types (:pr:`79`) + Version 0.6 -----------