Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0310 release #1037

Merged
merged 3 commits into from
Oct 28, 2024
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.30.1
current_version = 0.31.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.30.1
version: 0.31.0
doi: https://doi.org/10.5281/zenodo.7857393
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__ = "[email protected]"
__version__ = "0.30.1"
__version__ = "0.31.0"

from dfm_tools.deprecated import *
from dfm_tools.download import *
Expand Down
2 changes: 0 additions & 2 deletions dfm_tools/xugrid_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,8 +190,6 @@ def open_partitioned_dataset(file_nc:str, decode_fillvals:bool = False, remove_e
Remove ghostcells from the partitions. This is also done by xugrid automatically
upon merging, but then the domain numbers are not taken into account so
the result will be different. The default is True.
**kwargs : TYPE
DESCRIPTION.
file_nc : TYPE
DESCRIPTION.
kwargs : TYPE, optional
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
## Potential git/conda issues with installation

- long paths error? Check [this Github issue](https://github.com/Deltares/HYDROLIB-core/issues/327#issuecomment-1266534032)
- OpenSSL error? Fix your conda base env by doing [this](https://github.com/conda/conda/issues/11795#issuecomment-1335666474) or maybe [this](https://github.com/conda/conda/issues/11795#issuecomment-1382661765). Let us know if you encounter this issue.
- OpenSSL error? Fix your conda base env by doing [this](https://github.com/conda/conda/issues/11795#issuecomment-1335666474) or maybe [that](https://github.com/conda/conda/issues/11795#issuecomment-1382661765). Let us know if you encounter this issue.
4 changes: 2 additions & 2 deletions docs/whats-new.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# What's new

## UNRELEASED
## 0.31.0 (2024-10-28)

### Fix
- fixed CDS logging in for new users in `cds_credentials()` in [#1035](https://github.com/Deltares/dfm_tools/pull/1035)
- fixed CDS login via prompt for new users in `cds_credentials()` in [#1035](https://github.com/Deltares/dfm_tools/pull/1035)


## 0.30.0 (2024-10-20)
Expand Down
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.30.1"
version = "0.31.0"
maintainers = [{ name = "Jelmer Veenstra", email = "[email protected]" }]
description = "dfm_tools are pre- and post-processing tools for Delft3D FM"
readme = "README.md"
Expand Down
Loading