diff --git a/docs/releases/index.md b/docs/releases/index.md index 85ae674aedd8670863975f6023ec3ba27ef6ce8c..c61acc3ad5891af8debb952b9bf707eb6ccd5f68 100644 --- a/docs/releases/index.md +++ b/docs/releases/index.md @@ -5,6 +5,7 @@ maxdepth: 3 --- 0.x (upcoming release) <ogstools-0.x> +0.5.0 <ogstools-0.5.0> 0.4.0 <ogstools-0.4.0> 0.3.1 <ogstools-0.3.1> 0.3.0 <ogstools-0.3.0> diff --git a/docs/releases/ogstools-0.5.0.md b/docs/releases/ogstools-0.5.0.md new file mode 100644 index 0000000000000000000000000000000000000000..7625a11c1e0f8aa25308d92e4f8da85953c6cc78 --- /dev/null +++ b/docs/releases/ogstools-0.5.0.md @@ -0,0 +1,50 @@ +# OGSTools 0.5.0 Release Notes + +- Recommended OGS Version: 6.5.4 + +## API breaking changes + +- MeshSeries.data --> MeshSeries.values +- MeshSeries.clear --> MeshSeries.clear_cache +- In aggregate functions func str is replaced by callables (e.g. numpy.min) +- meshlib.gmsh_meshing.remesh_with_triangle --> meshlib.gmsh_meshing.remesh_with_triangles +- msh2vtu python interface was replaced with meshes_from_gmsh + - CLI tool msh2vtu is not affected by this + - parameter keep_ids was removed (in our OGS world there is no reason to keep the gmsh data names and the wrong data types in the meshes, which would happen if k was used) + - parameter log_level was changed to log (True or False) + +## Bugfixes + +- Failed sub library imports led to incomplete and unhandled package import +- MeshSeries was unable to handle xdmf with just one timestep correctly +- MeshSeries kept the hdf5 file handle open - parallel read access was not possible +- OMP_NUM_THREADS was not working on Windows +- Feflow mesh did not allow mixed celltypes +- plot functions had sometimes different color schemes in the color bar +- Tortuosity was not a medium property +- BHE mesh (z coordinate negative) + +## Features + +- MeshSeries gets copy() method. +- MeshSeries gets transform() method, that applies an arbitrary transformation function to all time steps. +- MeshSeries get extract() method to select points or cells via ids +- MeshSeries can be sliced to get new MeshSeries with the selected subset of timesteps +- MeshSeries gets a modify function that applies arbitrary function to all timestep - meshes. +- difference() between two meshes is now possible even with different topologies +- Project write_input, path can be specified + +## Infrastructure + +- Python 3.13 support (CI testing) +- Testing of all supported Python version 3.10-3.13 (pip and conda) +- Testing with pinned dependencies in regression tests and with open dependencies in maintenance tests +- msh2vtu - complete overhaul + +## Examples + +- All examples use `import ogstools as ot`. To not be confused with ogs python bindings + +# Footnotes + +- All related Merge requests are tagged with 0.5.0 Release https://gitlab.opengeosys.org/ogs/tools/ogstools/-/merge_requests?scope=all&state=merged&milestone_title=0.5.0%20Release diff --git a/docs/releases/ogstools-0.x.md b/docs/releases/ogstools-0.x.md index e02780d64e578c4362002518dad52aa04012b479..5d4b72498009fd3552b04439a934dfe736829406 100644 --- a/docs/releases/ogstools-0.x.md +++ b/docs/releases/ogstools-0.x.md @@ -4,24 +4,8 @@ This is not released yet! ## API breaking changes -- MeshSeries.data --> MeshSeries.values -- MeshSeries.clear --> MeshSeries.clear_cache -- meshlib.gmsh_meshing.remesh_with_triangle --> meshlib.gmsh_meshing.remesh_with_triangles -- msh2vtu python interface was replaced with meshes_from_gmsh - - CLI tool msh2vtu is not affected by this - - parameter keep_ids was removed (in our OGS world there is no reason to keep the gmsh data names and the wrong data types in the meshes, which would happen if k was used) - - parameter log_level was changed to log (True or False) +## Bugfixes ## Features -- MeshSeries gets copy() method. -- MeshSeries gets transform() method, that applies an arbitrary transformation function to all time steps. -- MeshSeries get extract() method to select points or cells via ids -- MeshSeries can be sliced to get new MeshSeries with the selected subset of timesteps -- difference() between two meshes is now possible even with different topologies - ## Infrastructure - -- Python 3.13 support (CI testing) -- Testing of all supported Python version 3.10-3.13 (pip and conda) -- Testing with pinned dependencies in regression tests and with open dependencies in maintenance tests