Skip to content

Commit 68f94de

Browse files
1036 prepare 0320 release (#1055)
* bumpversion * update howto release docs
1 parent 35703f7 commit 68f94de

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.31.1
2+
current_version = 0.32.0
33
commit = True
44
tag = True
55

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ authors:
88
orcid: https://orcid.org/0000-0002-6349-818X
99
title: "dfm_tools: A Python package for pre- and postprocessing D-FlowFM model input and output files"
1010
type: software
11-
version: 0.31.1
11+
version: 0.32.0
1212
doi: https://doi.org/10.5281/zenodo.7857393

dfm_tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
__author__ = """Jelmer Veenstra"""
66
__email__ = "jelmer.veenstra@deltares.nl"
7-
__version__ = "0.31.1"
7+
__version__ = "0.32.0"
88

99
from dfm_tools.deprecated import *
1010
from dfm_tools.download import *

docs/CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,12 @@
6565
## Create release
6666

6767
- make sure the `main` branch is up to date (check pytest warnings, important issues solved, all pullrequests and branches closed)
68+
- create and checkout branch for release
6869
- bump the versionnumber with `bumpversion minor`
6970
- update `docs/whats-new.md` and add a date to the current release heading
7071
- run local testbank with `pytest -m "not era5slow and not requireslocaldata"`
7172
- local check with: `python -m build` and `twine check dist/*` ([does not work on WCF](https://github.com/pypa/setuptools/issues/4133))
72-
- commit+push to github via PR
73+
- commit+push to branch and merge PR
7374
- copy the dfm_tools version from [pyproject.toml](https://github.com/Deltares/dfm_tools/blob/main/pyproject.toml) (e.g. `0.11.0`)
7475
- create a [new release](https://github.com/Deltares/dfm_tools/releases/new)
7576
- click `choose a tag` and type v+versionnumber (e.g. `v0.11.0`), click `create new tag: v0.11.0 on publish`

docs/whats-new.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# What's new
22

3-
## UNRELEASED
3+
## 0.32.0 (2025-01-14)
44

55
### Feat
66
- updated to copernicusmarine v2 in [#1046](https://github.com/Deltares/dfm_tools/pull/1046)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "dfm_tools"
7-
version = "0.31.1"
7+
version = "0.32.0"
88
maintainers = [{ name = "Jelmer Veenstra", email = "jelmer.veenstra@deltares.nl" }]
99
description = "dfm_tools are pre- and post-processing tools for Delft3D FM"
1010
readme = "README.md"

0 commit comments

Comments
 (0)