|
2 | 2 |
|
3 | 3 | ## v0.X Series
|
4 | 4 |
|
| 5 | +### v0.24.0 (2024-04-22) |
| 6 | + |
| 7 | +This will be the last release supporting Python 3.9. |
| 8 | +Future releases will require Python 3.10. |
| 9 | + |
| 10 | +**Fixes** |
| 11 | + |
| 12 | +* Fix cmake error `cannot create directory: /cmake/Amici` |
| 13 | + during model import in cases where BLAS was not found via `FindBLAS` |
| 14 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2389 |
| 15 | +* Added status code `AMICI_CONSTR_FAIL` |
| 16 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2379 |
| 17 | +* Fixed certain initial state issues with PEtab |
| 18 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2382 |
| 19 | +* Fixed Solver `operator==` and copyctor |
| 20 | + (constraints were not copied correctly) |
| 21 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2388 |
| 22 | +* Avoid confusing warnings about non-finite timepoints |
| 23 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2395 |
| 24 | +* Fixed incorrect exception types / messages for `IDASolver` |
| 25 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2398 |
| 26 | +* cmake: set SUNDIALS path hint for python package to help CMake find |
| 27 | + the correct SUNDIALS installation |
| 28 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2397 |
| 29 | + |
| 30 | +* **Features** |
| 31 | + |
| 32 | +* Optionally include measurements in `plot_observable_trajectories` |
| 33 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2381 |
| 34 | +* Improved type annotations in swig-wrappers |
| 35 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2401 |
| 36 | +* Additional attributes are accessible directly via `ReturnDataView` and |
| 37 | + `ExpDataView`, e.g. `ReturnDataView.ny`, `ReturnDataView.nx` |
| 38 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2405 |
| 39 | +* Allow subselection of state variables for convergence check during |
| 40 | + steady-state simulations via `Model.set_steadystate_mask([1, 0, ..., 1])` |
| 41 | + (positive value: check; non-positive: don't check). |
| 42 | + by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2387 |
| 43 | + |
| 44 | +**Full Changelog**: https://github.com/AMICI-dev/AMICI/compare/v0.23.1...v0.24.0 |
| 45 | + |
| 46 | + |
5 | 47 | ### v0.23.1 (2024-03-11)
|
6 | 48 |
|
7 | 49 | * Fixes installation issues related to building SuiteSparse on some systems
|
|
0 commit comments