diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 44788751c..4dbf19393 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.25.1 +current_version = 0.26.0 commit = True tag = True diff --git a/CITATION.cff b/CITATION.cff index 91bc441a1..d7c6dfacf 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.25.1 +version: 0.26.0 doi: https://doi.org/10.5281/zenodo.7857393 diff --git a/dfm_tools/__init__.py b/dfm_tools/__init__.py index ba702b9fb..a2753e540 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.25.1" +__version__ = "0.26.0" from dfm_tools.deprecated import * from dfm_tools.download import * diff --git a/docs/whats-new.md b/docs/whats-new.md index d1cfb682d..57d831a98 100644 --- a/docs/whats-new.md +++ b/docs/whats-new.md @@ -1,6 +1,6 @@ # What's new -## UNRELEASED +## 0.26.0 (2024-09-03) ### Fix - properly assigning units attribute in `ds_apply_conversion_dict()` (it did not always stick) in [#965](https://github.com/Deltares/dfm_tools/pull/965) diff --git a/pyproject.toml b/pyproject.toml index 4f88a0a48..440eec565 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "dfm_tools" -version = "0.25.1" +version = "0.26.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"