From 18b3221123b0bcbcb4c012837bdf5dd9d988d5a0 Mon Sep 17 00:00:00 2001 From: veenstrajelmer <60435591+veenstrajelmer@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:37:56 +0200 Subject: [PATCH] 523 prepare 0150 release (#606) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump version: 0.14.2 → 0.15.0 * updated whatsnew * updated contributing --- .bumpversion.cfg | 2 +- CITATION.cff | 2 +- dfm_tools/__init__.py | 2 +- docs/CONTRIBUTING.md | 2 +- docs/whats-new.md | 2 +- pyproject.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 94ec7a9a8..e1619053f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.14.2 +current_version = 0.15.0 commit = True tag = True diff --git a/CITATION.cff b/CITATION.cff index d325da4a6..b7b1bbedd 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.14.2 +version: 0.15.0 doi: https://doi.org/10.5281/zenodo.7857393 diff --git a/dfm_tools/__init__.py b/dfm_tools/__init__.py index 559f7b1be..30e336586 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.14.2" +__version__ = "0.15.0" from dfm_tools.deprecated import * from dfm_tools.errors import * diff --git a/docs/CONTRIBUTING.md b/docs/CONTRIBUTING.md index 91df9d548..57c66530b 100644 --- a/docs/CONTRIBUTING.md +++ b/docs/CONTRIBUTING.md @@ -70,7 +70,7 @@ mkdocs build - update ``docs/whats-new.md`` and add a date to the current release heading - run local testbank - local check with: ``python setup.py sdist bdist_wheel`` and ``twine check dist/*`` -- copy the dfm_tools version from https://github.com/Deltares/dfm_tools/blob/main/setup.cfg (e.g. ``0.11.0``) +- copy the dfm_tools version from https://github.com/Deltares/dfm_tools/blob/main/pyproject.toml (e.g. ``0.11.0``) - go to https://github.com/Deltares/dfm_tools/releases/new - click ``choose a tag`` and type v+versionnumber (e.g. ``v0.11.0``), click ``create new tag: v0.11.0 on publish`` - set the release title to the tagname (e.g. ``v0.11.0``) diff --git a/docs/whats-new.md b/docs/whats-new.md index f065f3413..de777720e 100644 --- a/docs/whats-new.md +++ b/docs/whats-new.md @@ -1,4 +1,4 @@ -## UNRELEASED +## 0.15.0 (2023-10-19) ### Feat - create `dimr_config.xml` and `run_parallel.bat` with `dfmt.create_model_exec_files()` by [@veenstrajelmer](https://github.com/veenstrajelmer) in [#599](https://github.com/Deltares/dfm_tools/pull/599) diff --git a/pyproject.toml b/pyproject.toml index 7fed2e460..e0d2e04e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dfm_tools" -version = "0.14.2" +version = "0.15.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"