From c599b43bd2751c471dbfa17af0550cb1047bbe46 Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Wed, 3 Jul 2024 14:30:20 +1200 Subject: [PATCH] RLS: 0.8 (#102) --- CITATION.cff | 4 ++-- docs/source/changelog.rst | 17 +++++++++++++++++ docs/source/conf.py | 1 - 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 7867b48..dc04db9 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.7" -date-released: "2023-12-07" +version: "0.8" +date-released: "2024-07-03" 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/docs/source/changelog.rst b/docs/source/changelog.rst index f5d5b7c..7395437 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,6 +3,23 @@ Change log .. currentmodule:: swn +Version 0.8 +----------- + +:Date: 3 July 2024 + +New things +~~~~~~~~~~ +- Add :py:meth:`modflow.SwnMf6.gather_reaches` (:pr:`92`) +- Add :py:meth:`swn.SurfaceWaterNetwork.coarsen` to create stream networks with a higher stream order (:pr:`100`) + +Other changes +~~~~~~~~~~~~~ +- Fix warnings and test with :py:meth:`~SurfaceWaterNetwork.locate_geoms` (:pr:`96`) +- Change build to hatch, use only ruff format and lint tools, add workflow to publish to PyPI (:pr:`97`) +- Fixes for geopandas-1.0.0 (:pr:`98`) +- Always use native Python types for list outputs (:pr:`101`) + Version 0.7 ----------- diff --git a/docs/source/conf.py b/docs/source/conf.py index 7214ca5..7a1c5d6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -62,7 +62,6 @@ # further. For a list of options available for each theme, see the # documentation. html_theme_options = { - "search_bar_position": "sidebar", "github_url": "https://github.com/mwtoews/surface-water-network", }