Skip to content

Commit cb5d425

Browse files
committed
Bump version, update release notes, regenerate test models
1 parent 7d826a5 commit cb5d425

File tree

28 files changed

+49
-37
lines changed

28 files changed

+49
-37
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ See also our [versioning policy](https://amici.readthedocs.io/en/latest/versioni
44

55
## v0.X Series
66

7+
### v0.34.2 (2025-11-03)
8+
9+
Bugfix release.
10+
11+
* Python 3.14 compatibility
12+
* Swig 4.4.0 compatibility
13+
* Fixed type annotations in swig wrappers
14+
* Fixes a bug that resulted in incorrect processing of initial assignments
15+
containing (amici-)splines
16+
* Fixes an SBML import error during the handling of algebraic rules
17+
* Fixes a CMake error with certain CMake versions
18+
719
### v0.34.1 (2025-08-25)
820

921
Bugfix release.

models/model_calvetti_py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if(DEFINED ENV{AMICI_LDFLAGS})
3030
link_libraries("$ENV{AMICI_LDFLAGS}")
3131
endif()
3232

33-
find_package(Amici 0.34.1 REQUIRED HINTS
33+
find_package(Amici 0.34.2 REQUIRED HINTS
3434
${CMAKE_CURRENT_LIST_DIR}/../../build)
3535
message(STATUS "Found AMICI ${Amici_DIR}")
3636
set_target_properties(Upstream::amici PROPERTIES

models/model_calvetti_py/model_calvetti_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -550,15 +550,15 @@ class Model_model_calvetti_py : public amici::Model_DAE {
550550
* @return AMICI version string
551551
*/
552552
std::string getAmiciVersion() const override {
553-
return "0.34.1";
553+
return "0.34.2";
554554
}
555555

556556
/**
557557
* @brief returns the amici version that was used to generate the model
558558
* @return AMICI git commit hash
559559
*/
560560
std::string getAmiciCommit() const override {
561-
return "b12c68a7a02f1cbd33de59d47cbc0c4d77d30d6f";
561+
return "de6c323178301dcc74c125ebf2e089ba9e2dc49b";
562562
}
563563

564564
bool hasQuadraticLLH() const override {

models/model_calvetti_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def get_extension() -> CMakeExtension:
8787
author_email="model-author-todo",
8888
ext_modules=[MODEL_EXT],
8989
packages=find_namespace_packages(),
90-
install_requires=["amici==0.34.1"],
90+
install_requires=["amici==0.34.2"],
9191
python_requires=">=3.11",
9292
package_data={},
9393
zip_safe=False,

models/model_dirac_py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if(DEFINED ENV{AMICI_LDFLAGS})
3030
link_libraries("$ENV{AMICI_LDFLAGS}")
3131
endif()
3232

33-
find_package(Amici 0.34.1 REQUIRED HINTS
33+
find_package(Amici 0.34.2 REQUIRED HINTS
3434
${CMAKE_CURRENT_LIST_DIR}/../../build)
3535
message(STATUS "Found AMICI ${Amici_DIR}")
3636
set_target_properties(Upstream::amici PROPERTIES

models/model_dirac_py/model_dirac_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -537,15 +537,15 @@ class Model_model_dirac_py : public amici::Model_ODE {
537537
* @return AMICI version string
538538
*/
539539
std::string getAmiciVersion() const override {
540-
return "0.34.1";
540+
return "0.34.2";
541541
}
542542

543543
/**
544544
* @brief returns the amici version that was used to generate the model
545545
* @return AMICI git commit hash
546546
*/
547547
std::string getAmiciCommit() const override {
548-
return "b12c68a7a02f1cbd33de59d47cbc0c4d77d30d6f";
548+
return "de6c323178301dcc74c125ebf2e089ba9e2dc49b";
549549
}
550550

551551
bool hasQuadraticLLH() const override {

models/model_dirac_py/model_dirac_py/model_dirac_py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file was automatically generated by SWIG (https://www.swig.org).
2-
# Version 4.3.1
2+
# Version 4.4.0
33
#
44
# Do not make changes to this file unless you know what you are doing - modify
55
# the SWIG interface file instead.

models/model_dirac_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def get_extension() -> CMakeExtension:
8787
author_email="model-author-todo",
8888
ext_modules=[MODEL_EXT],
8989
packages=find_namespace_packages(),
90-
install_requires=["amici==0.34.1"],
90+
install_requires=["amici==0.34.2"],
9191
python_requires=">=3.11",
9292
package_data={},
9393
zip_safe=False,

models/model_events_py/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if(DEFINED ENV{AMICI_LDFLAGS})
3030
link_libraries("$ENV{AMICI_LDFLAGS}")
3131
endif()
3232

33-
find_package(Amici 0.34.1 REQUIRED HINTS
33+
find_package(Amici 0.34.2 REQUIRED HINTS
3434
${CMAKE_CURRENT_LIST_DIR}/../../build)
3535
message(STATUS "Found AMICI ${Amici_DIR}")
3636
set_target_properties(Upstream::amici PROPERTIES

models/model_events_py/model_events_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -572,15 +572,15 @@ class Model_model_events_py : public amici::Model_ODE {
572572
* @return AMICI version string
573573
*/
574574
std::string getAmiciVersion() const override {
575-
return "0.34.1";
575+
return "0.34.2";
576576
}
577577

578578
/**
579579
* @brief returns the amici version that was used to generate the model
580580
* @return AMICI git commit hash
581581
*/
582582
std::string getAmiciCommit() const override {
583-
return "b12c68a7a02f1cbd33de59d47cbc0c4d77d30d6f";
583+
return "de6c323178301dcc74c125ebf2e089ba9e2dc49b";
584584
}
585585

586586
bool hasQuadraticLLH() const override {

0 commit comments

Comments
 (0)