Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.45.1
current_version = 0.46.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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.45.1
version: 0.46.0
doi: https://doi.org/10.5281/zenodo.7857393
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![pytest](https://github.com/Deltares/dfm_tools/actions/workflows/pytest.yml/badge.svg?branch=main)](https://github.com/Deltares/dfm_tools/actions/workflows/pytest.yml)
[![test](https://github.com/Deltares/dfm_tools/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/Deltares/dfm_tools/actions/workflows/test.yml)
[![codecov](https://img.shields.io/codecov/c/github/deltares/dfm_tools.svg?style=flat-square)](https://app.codecov.io/gh/deltares/dfm_tools?displayType=list)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=Deltares_dfm_tools&metric=alert_status)](https://sonarcloud.io/summary/overall?id=Deltares_dfm_tools)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Deltares/dfm_tools/HEAD?urlpath=/tree/docs/notebooks)
Expand Down
2 changes: 1 addition & 1 deletion dfm_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Jelmer Veenstra"""
__email__ = "jelmer.veenstra@deltares.nl"
__version__ = "0.45.1"
__version__ = "0.46.0"

from dfm_tools.deprecated_functions import *
from dfm_tools.download import *
Expand Down
7 changes: 4 additions & 3 deletions docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ pixi run docs-build

- make sure the `main` branch is up to date (check pytest warnings, important issues solved, all pullrequests and branches closed)
- create and checkout branch for release
- bump the versionnumber with `bumpversion minor`
- bump the versionnumber with `pixi run bumpversion minor`
- update the lockfile with `pixi lock`
- update `docs/whats-new.md` and add a date to the current release heading
- run local testbank with `pytest -m "not requireslocaldata"`
- local check with: `python -m build` and `twine check dist/*` ([does not work on WCF](https://github.com/pypa/setuptools/issues/4133))
- run local testbank with `pixi run pytest -m "not requireslocaldata"`
- local check with: `pixi run python -m build` and `pixi run twine check dist/*` ([does not work on WCF](https://github.com/pypa/setuptools/issues/4133))
- commit+push to branch and merge PR
- copy the dfm_tools version from [pyproject.toml](https://github.com/Deltares/dfm_tools/blob/main/pyproject.toml) (e.g. `0.11.0`)
- create a [new release](https://github.com/Deltares/dfm_tools/releases/new)
Expand Down
6 changes: 5 additions & 1 deletion docs/whats-new.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# What's new

## UNRELEASED
## 0.46.0 (2026-05-20)

# Feat
- added support for python 3.14 in [#1335](https://github.com/Deltares/dfm_tools/pull/1335)
- support for hydrolib-core v1 in [#1326](https://github.com/Deltares/dfm_tools/issues/1326) and [1351](https://github.com/Deltares/dfm_tools/pull/1351)
- support for pandas 3 in [#1340](https://github.com/Deltares/dfm_tools/pull/1340)

# Fix
- proper CRS support with xugrid>=0.15.2 in [#1337](https://github.com/Deltares/dfm_tools/pull/1337)

# Deprecated
- removed `dfmt.velovect()` as it is preceded by UltraPlots `curved_quiver` in [#1328](https://github.com/Deltares/dfm_tools/pull/1328)

Expand Down
4 changes: 2 additions & 2 deletions pixi.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dfm_tools"
version = "0.45.1"
version = "0.46.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"
Expand Down
Loading