From de6ec23fdefcab45bdc7f7ac5eea6b07184b4001 Mon Sep 17 00:00:00 2001 From: veenstrajelmer <60435591+veenstrajelmer@users.noreply.github.com> Date: Thu, 8 Feb 2024 09:33:12 +0100 Subject: [PATCH] 699 prepare 0190 release (#775) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version: 0.18.1 → 0.19.0 * updated whatsnew --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- dfm_tools/__init__.py | 2 +- docs/whats-new.md | 4 ++-- pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5ae6d87d1..5fdde8ab7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.18.1 +current_version = 0.19.0 commit = True tag = True diff --git a/CITATION.cff b/CITATION.cff index 9ae3eca35..2c673b5e3 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,5 +8,5 @@ authors: orcid: https://orcid.org/0000-0002-6349-818X title: "dfm_tools: A Python package for pre- and postprocessing D-FlowFM model input and output files" type: software -version: 0.18.1 +version: 0.19.0 doi: https://doi.org/10.5281/zenodo.7857393 diff --git a/dfm_tools/__init__.py b/dfm_tools/__init__.py index b02d3f79c..459e18172 100644 --- a/dfm_tools/__init__.py +++ b/dfm_tools/__init__.py @@ -4,7 +4,7 @@ __author__ = """Jelmer Veenstra""" __email__ = "jelmer.veenstra@deltares.nl" -__version__ = "0.18.1" +__version__ = "0.19.0" from dfm_tools.deprecated import * from dfm_tools.download import * diff --git a/docs/whats-new.md b/docs/whats-new.md index 9b25f15c3..82265933d 100644 --- a/docs/whats-new.md +++ b/docs/whats-new.md @@ -1,7 +1,6 @@ -## UNRELEASED +## 0.19.0 (2024-02-08) ### Feat -- added reset of Copernicus Marine Toolbox with `dfmt.download.copernicusmarine_reset()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#714](https://github.com/Deltares/dfm_tools/pull/714) - automatically parse epsg from FM mapfile to crs in `dfmt.open_partitioned_dataset()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#685](https://github.com/Deltares/dfm_tools/pull/685) - added spatial/temporal subsetting and retrieving of insitu observation data with `dfmt.ssh_catalog_subset()` and `dfmt.ssh_retrieve_data()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#711](https://github.com/Deltares/dfm_tools/pull/711) - added conversion of absolute to relative paths for modelbuilder with `dfmt.make_paths_relative()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#723](https://github.com/Deltares/dfm_tools/pull/723) @@ -11,6 +10,7 @@ - expecting da instead of ds in `refine_basegrid()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#762](https://github.com/Deltares/dfm_tools/pull/762) - added support for Python 3.12 by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#763](https://github.com/Deltares/dfm_tools/pull/763) - moved from `copernicus-marine-client` to `copernicusmarine` in `dfmt.download_CMEMS()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#721](https://github.com/Deltares/dfm_tools/pull/721) and [#772](https://github.com/Deltares/dfm_tools/pull/772) +- added reset of Copernicus Marine Toolbox with `dfmt.download.copernicusmarine_reset()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#714](https://github.com/Deltares/dfm_tools/pull/714) ### Fix - prevent ValueError upon concatenation of only emtpy coastlines geodataframes by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#717](https://github.com/Deltares/dfm_tools/pull/717) diff --git a/pyproject.toml b/pyproject.toml index ed08f4b21..eb05716cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dfm_tools" -version = "0.18.1" +version = "0.19.0" maintainers = [{ name = "Jelmer Veenstra", email = "jelmer.veenstra@deltares.nl" }] description = "dfm_tools are pre- and post-processing tools for Delft3D FM" readme = "README.md"