Skip to content

Commit 17dbad1

Browse files
authored
Prepare release 0.34.1 (#2941)
* Bump version, update release notes * maint: regenerate test models
1 parent b12c68a commit 17dbad1

File tree

27 files changed

+44
-36
lines changed

27 files changed

+44
-36
lines changed

CHANGELOG.md

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

55
## v0.X Series
66

7+
### v0.34.1 (2025-08-25)
8+
9+
Bugfix release.
10+
11+
* Fixed a bug that would lead to incorrect model initialization in SBML models
12+
with initial assignments that depend on dynamic entities
13+
(by @dweindl in https://github.com/AMICI-dev/AMICI/pull/2939)
14+
715
### v0.34.0 (2025-07-29)
816

917
This will probably be the last release to include the MATLAB interface.

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.0 REQUIRED HINTS
33+
find_package(Amici 0.34.1 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.0";
553+
return "0.34.1";
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 "08d0c9533715453de60b684970751c6de07ffd9b";
561+
return "b12c68a7a02f1cbd33de59d47cbc0c4d77d30d6f";
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.0"],
90+
install_requires=["amici==0.34.1"],
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.0 REQUIRED HINTS
33+
find_package(Amici 0.34.1 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.0";
540+
return "0.34.1";
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 "08d0c9533715453de60b684970751c6de07ffd9b";
548+
return "b12c68a7a02f1cbd33de59d47cbc0c4d77d30d6f";
549549
}
550550

551551
bool hasQuadraticLLH() const override {

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.0"],
90+
install_requires=["amici==0.34.1"],
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.0 REQUIRED HINTS
33+
find_package(Amici 0.34.1 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.0";
575+
return "0.34.1";
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 "08d0c9533715453de60b684970751c6de07ffd9b";
583+
return "b12c68a7a02f1cbd33de59d47cbc0c4d77d30d6f";
584584
}
585585

586586
bool hasQuadraticLLH() const override {

models/model_events_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.0"],
90+
install_requires=["amici==0.34.1"],
9191
python_requires=">=3.11",
9292
package_data={},
9393
zip_safe=False,

0 commit comments

Comments
 (0)