Skip to content

Commit 633307a

Browse files
bump: version 0.7.0 → 0.8.0
1 parent 3f6e359 commit 633307a

File tree

5 files changed

+28
-5
lines changed

5 files changed

+28
-5
lines changed

docs/changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 0.8.0 (2024-07-09)
2+
3+
### Feat
4+
5+
- Prevent duplicate contacts/links in `Link1d2d` by replacing Link1d2d._process() with properties (#674)
6+
- Move jadelvappos to physics section. (#672)
7+
- Make research wave section optional again. (#671)
8+
- Fix remaining keywords (#670)
9+
- Add support for spaces polyline names (#652)
10+
- Add support for optional [sedtrails] research section. (#651)
11+
- Don't write keywords with None values (#663)
12+
- Add/move more mdu keywords (#654)
13+
- Raise error for unknown keywords (#632)
14+
- Added support for research keywords (#642)
15+
- Add support for python 3.12 (#640)
16+
- Use caching to prevent reading files multiple times (#641)
17+
- Add missing mdu keywords (#628)
18+
19+
### Fix
20+
21+
- Ensure mesh_2d_edge_x and mesh_2d_edge_y are written to nc file. (#645)
22+
- locationtype should not be written for CrossSections or ObservationCrossSections (#683)
23+
124
## 0.7.0 (2024-03-11)
225

326
### Feat

hydrolib/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.0"
1+
__version__ = "0.8.0"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hydrolib-core"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "Python wrappers around D-HYDRO Suite."
55
authors = ["Deltares"]
66
license = "MIT"
@@ -53,7 +53,7 @@ xarray = ">=2023.0.0"
5353

5454
[tool.commitizen]
5555
name = "cz_conventional_commits"
56-
version = "0.7.0"
56+
version = "0.8.0"
5757
tag_format = "$version"
5858
version_files = [
5959
"hydrolib/core/__init__.py",

tests/data/reference/dimr/test_serialize.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<dimrConfig xmlns="http://schemas.deltares.nl/dimr" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.deltares.nl/dimr http://content.oss.deltares.nl/schemas/dimr-1.3.xsd">
33
<documentation>
44
<fileVersion>1.3</fileVersion>
5-
<createdBy>hydrolib-core 0.7.0</createdBy>
5+
<createdBy>hydrolib-core 0.8.0</createdBy>
66
<creationDate>2020-03-17T10:02:49.4520672Z</creationDate>
77
</documentation>
88
<control>

tests/data/reference/model/test_dimr_model_save.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<dimrConfig xmlns="http://schemas.deltares.nl/dimr" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://schemas.deltares.nl/dimr http://content.oss.deltares.nl/schemas/dimr-1.3.xsd">
33
<documentation>
44
<fileVersion>1.3</fileVersion>
5-
<createdBy>hydrolib-core 0.7.0</createdBy>
5+
<createdBy>hydrolib-core 0.8.0</createdBy>
66
<creationDate>2021-07-29T12:45:00</creationDate>
77
</documentation>
88
<control>

0 commit comments

Comments
 (0)