Skip to content

Commit 472f1b4

Browse files
Issue #1362 rename release tag (#1363)
Fixes #1362 # Description - Rename 1.0.0b0 to 1.0.0rc0 - Fix some other missing methods in public API and changelog
1 parent c0d147e commit 472f1b4

File tree

5 files changed

+29
-25
lines changed

5 files changed

+29
-25
lines changed

docs/api/changelog.rst

Lines changed: 22 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.
66
The format is based on `Keep a Changelog`_, and this project adheres to
77
`Semantic Versioning`_.
88

9-
[1.0.0b0] - 2024-12-20
9+
[1.0.0rc0] - 2024-12-20
1010
----------------------
1111

1212
Added
@@ -34,26 +34,27 @@ Added
3434
Fixed
3535
~~~~~
3636

37-
- Fixed bug where :class:`HorizontalFlowBarrierResistance`,
38-
:class:`HorizontalFlowBarrierSingleLayerResistance` and other HFB packages
39-
could not be allocated to cell edges when idomain in layer 1 was largely
40-
inactive.
37+
- Fixed bug where :class:`imod.mf6.HorizontalFlowBarrierResistance`,
38+
:class:`imod.mf6.HorizontalFlowBarrierSingleLayerResistance` and other HFB
39+
packages could not be allocated to cell edges when idomain in layer 1 was
40+
largely inactive.
4141
- Fixed bug where :meth:`HorizontalFlowBarrierResistance.clip_box`,
4242
:meth:`HorizontalFlowBarrierSingleLayerResistance.clip_box` methods only
4343
returned deepcopy instead of actually clipping the line geometries.
44-
- Fixed bug where :class:`HorizontalFlowBarrierResistance`,
45-
:class:`HorizontalFlowBarrierSingleLayerResistance` and other HFB packages could not
46-
be clipped or copied with xarray >= 2024.10.0.
44+
- Fixed bug where :class:`imod.mf6.HorizontalFlowBarrierResistance`,
45+
:class:`imod.mf6.HorizontalFlowBarrierSingleLayerResistance` and other HFB
46+
packages could not be clipped or copied with xarray >= 2024.10.0.
4747
- Fixed crash upon calling :meth:`imod.mf6.GroundwaterFlowModel.dump`, when a
48-
:class:`HorizontalFlowBarrierResistance`,
49-
:class:`HorizontalFlowBarrierSingleLayerResistance` or other HFB package was
50-
assigned to the model.
48+
:class:`imod.mf6.HorizontalFlowBarrierResistance`,
49+
:class:`imod.mf6.HorizontalFlowBarrierSingleLayerResistance` or other HFB
50+
package was assigned to the model.
5151
- :meth:`imod.mf6.Modflow6Simulation.regrid_like` can now regrid a structured
5252
model to an unstructured grid.
5353
- :meth:`imod.mf6.Modflow6Simulation.regrid_like` throws a
5454
``NotImplementedError`` when attempting to regrid an unstructured model to a
5555
structured grid.
56-
- :class:`imod.msw.Sprinkling` now correctly writes source svats to scap_svat.inp file.
56+
- :class:`imod.msw.Sprinkling` now correctly writes source svats to
57+
scap_svat.inp file.
5758
- :func:`imod.evaluate.calculate_gxg`, upon providing a head dataarray chunked
5859
over time, will no longer error with ``ValueError: Object has inconsistent
5960
chunks along dimension bimonth. This can be fixed by calling unify_chunks().``
@@ -70,8 +71,8 @@ Changed
7071
- If ``"cap"`` package present in ``imod5_data``,
7172
:meth:`imod.mf6.GroundwaterFlowModel.from_imod5_data` now automatically adds a
7273
well for metaswap sprinkling named ``"msw-sprinkling"``
73-
- Less strict validation for :class:`HorizontalFlowBarrierResistance`,
74-
:class:`HorizontalFlowBarrierSingleLayerResistance` and other HFB packages for
74+
- Less strict validation for :class:`imod.mf6.HorizontalFlowBarrierResistance`,
75+
:class:`imod.mf6.HorizontalFlowBarrierSingleLayerResistance` and other HFB packages for
7576
simulations which are imported with
7677
:meth:`imod.mf6.Modflow6Simulation.from_imod5_data`
7778
- DeprecationWarning thrown upon initializing :class:`imod.prepare.Regridder`.
@@ -87,9 +88,9 @@ Changed
8788
Added
8889
~~~~~
8990

90-
- :class:`imod.prepare.topsystem.SimulationAllocationOptions`,
91-
:class:`imod.prepare.topsystem.SimulationDistributingOptions`, which are used
92-
to store default allocation and distributing options respectively.
91+
- :class:`imod.prepare.SimulationAllocationOptions`,
92+
:class:`imod.prepare.SimulationDistributingOptions`, which are used to store
93+
default allocation and distributing options respectively.
9394

9495
Fixed
9596
~~~~~
@@ -150,7 +151,8 @@ Changed
150151

151152
- :class:`imod.mf6.Well` now also validates that well filter top is above well
152153
filter bottom
153-
- :func:`open_projectfile_data` now also imports well filter top and bottom.
154+
- :func:`imod.formats.prj.open_projectfile_data` now also imports well filter
155+
top and bottom.
154156
- :class:`imod.mf6.Well` now logs a warning if any wells are removed during writing.
155157
- :class:`imod.mf6.HorizontalFlowBarrierResistance`,
156158
:class:`imod.mf6.HorizontalFlowBarrierMultiplier`,
@@ -160,8 +162,8 @@ Changed
160162
:func:`imod.prepare.linestring_to_square_zpolygons` and
161163
:func:`imod.prepare.linestring_to_trapezoid_zpolygons` to generate these
162164
polygons.
163-
- :func:`open_projectfile_data` now returns well data grouped by ipf name,
164-
instead of generic, separate number per entry.
165+
- :func:`imod.formats.prj.open_projectfile_data` now returns well data grouped
166+
by ipf name, instead of generic, separate number per entry.
165167
- :class:`imod.mf6.Well` now supports wells which have a filter with zero
166168
length, where ``"screen_top"`` equals ``"screen_bottom"``.
167169
- :class:`imod.mf6.Well` shares the same default ``minimum_thickness`` as

docs/api/mf6.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Read Output
1212
open_hds
1313
open_cbc
1414
read_cbc_headers
15+
open_dvs
1516

1617
Model objects & methods
1718
-----------------------
@@ -124,6 +125,7 @@ Flow Packages
124125
NodePropertyFlow.clip_box
125126
Recharge
126127
Recharge.from_imod5_data
128+
Recharge.from_imod5_cap_data
127129
Recharge.mask
128130
Recharge.regrid_like
129131
Recharge.clip_box

docs/installation.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ Install beta release
2828

2929
To install a beta release with pixi::
3030

31-
pixi add imod=1.0.0b0
31+
pixi add imod=1.0.0rc0
3232

3333
Or with conda::
3434

35-
conda install imod=1.0.0b0
35+
conda install imod=1.0.0rc0
3636

3737
Or with pip::
3838

39-
pip install --pre imod=1.0.0b0
39+
pip install --pre imod=1.0.0rc0
4040

4141

4242
Which Python?

imod/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
)
1616
from imod.formats import gen, idf, ipf, prj, rasterio
1717

18-
__version__ = "1.0.0b0"
18+
__version__ = "1.0.0rc0"

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "imod-python"
3-
version = "1.0.0b0"
3+
version = "1.0.0rc0"
44
description = "Make massive MODFLOW models"
55
authors = ["Deltares <imod.info@deltares.nl>"]
66
channels = ["conda-forge"]

0 commit comments

Comments
 (0)