|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -## main |
4 |
| -- No changes |
| 3 | +## v0.7.0 |
| 4 | + |
| 5 | +- Renamed `dolfinx.graph.create_adjacencylist` to `dolfinx.graph.adjacencylist` |
| 6 | +- Renamed `dolfinx.plot.create_vtk_mesh` to `dolfinx.plot.vtk_mesh` |
| 7 | +- `dolfinx.geometry.BoundingBoxTree` has been changed to `dolfinx.geometry.bb_tree` |
| 8 | +- `create_mesh` with Meshio has been modified. Note that you now need to pass dtype `np.int32` to the cell_data. |
| 9 | +- Update dolfinx petsc API. Now one needs to explicitly import `dolfinx.fem.petsc` and `dolfinx.fem.nls`, as PETSc is no longer a strict requirement. Replace `petsc4py.PETSc.ScalarType` with `dolfinx.default_scalar_type` in demos where we do not use `petsc4py` explicitly. |
5 | 10 |
|
6 | 11 | ## v0.6.0
|
| 12 | + |
7 | 13 | - Remove `ipygany` and `pythreejs` as plotting backends. Using `panel`.
|
8 | 14 | - Add gif-output to [chapter2/diffusion_code] and [chapter2/hyperelasticity].
|
9 | 15 | - Replace `dolfinx.fem.Function.geometric_dimension` with `len(dolfinx.fem.Function)`
|
10 | 16 | - Improve [chapter2/ns_code2] to have better splitting scheme and density.
|
11 | 17 | - Improve mesh quality in [chapter3/em].
|
12 | 18 | - `jit_params` and `form_compiler_params` renamed to `*_options`.
|
13 | 19 |
|
14 |
| - |
15 | 20 | ## v0.5.0
|
| 21 | + |
16 | 22 | - Using new GMSH interface in DOLFINx (`dolfinx.io.gmshio`) in all demos using GMSH
|
17 | 23 | - Added a section on custom Newton-solvers, see [chapter4/newton-solver].
|
18 | 24 | - Various minor DOLFINx API updates. `dolfinx.mesh.compute_boundary_facets` -> `dolfinx.mesh.exterior_facet_indices` with slightly different functionality. Use `dolfinx.mesh.MeshTagsMetaClass.find` instead of `mt.indices[mt.values==value]`.
|
|
21 | 27 | - Add example of how to use `DOLFINx` in complex mode, see [chapter1/complex_mode].
|
22 | 28 |
|
23 | 29 | ## 0.4.1
|
| 30 | + |
24 | 31 | - No changes
|
25 | 32 |
|
26 | 33 | ## 0.4.0 (05.02.2021)
|
| 34 | + |
27 | 35 | - All `pyvista` plotting has been rewritten to use `ipygany` and `pythreejs` as well as using a cleaner interface.
|
28 | 36 | - `dolfinx.plot.create_vtk_topology` has been renamed to `dolfinx.plot.create_vtk_mesh` and can now be directly used as input to `pyvista.UnstructuredGrid`.
|
29 | 37 | - `dolfinx.fem.Function.compute_point_values` has been deprecated. Interpolation into a CG-1 is now the way of getting vertex values.
|
|
34 | 42 | - Various API changes relating to the import structure of DOLFINx
|
35 | 43 |
|
36 | 44 | ## 0.3.0 (09.09.2021)
|
| 45 | + |
37 | 46 | - Major improvements in [Form compiler parameters](chapter4/compiler_parameters), using pandas and seaborn for visualization of speed-ups gained using form compiler parameters.
|
38 | 47 | - API change: `dolfinx.cpp.la.scatter_forward(u.x)` -> `u.x.scatter_forward`
|
39 | 48 | - Various plotting updates due to new version of pyvista.
|
40 | 49 | - Updating of the [Hyperelasticity demo](chapter2/hyperelasticity), now using DOLFINx wrappers to create the non-linear problem
|
41 | 50 | - Internal updates due to bumping of jupyter-book versions
|
42 | 51 | - Various typos and capitalizations fixed by @mscroggs in [PR 35](https://github.com/jorgensd/dolfinx-tutorial/pull/35).
|
43 | 52 |
|
44 |
| - |
45 |
| - |
46 | 53 | ## 0.1.0 (11.05.2021)
|
47 |
| -- First tagged release of DOLFINx Tutorial, compatible with [DOLFINx 0.1.0](https://github.com/FEniCS/dolfinx/releases/tag/0.1.0). |
| 54 | + |
| 55 | +- First tagged release of DOLFINx Tutorial, compatible with [DOLFINx 0.1.0](https://github.com/FEniCS/dolfinx/releases/tag/0.1.0). |
0 commit comments