Skip to content

Commit b611a07

Browse files
committed
Release 1.0.1
bump version, update changelog
1 parent 1954d3e commit b611a07

File tree

19 files changed

+32
-28
lines changed

19 files changed

+32
-28
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ See also our [versioning policy](https://amici.readthedocs.io/en/latest/versioni
1212
the jax-dependencies weren't installed.
1313
* Fixed a pandas>=3.0 compatibility issue in the PEtab importer which resulted
1414
in incorrect selection of fixed parameters.
15+
* Fixed logger configuration for simulation warnings/errors, such that users
16+
can adjust the log level or simulations with, e.g.,
17+
`logging.getLogger("amici.sim.sundials").setLevel(logging.ERROR)`
18+
* Fixed various broken links and outdated function names in the documentation.
1519

1620
### v1.0.0
1721

models/model_calvetti_py/model_calvetti_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,15 +533,15 @@ class Model_model_calvetti_py : public amici::Model_DAE {
533533
* @return AMICI version string
534534
*/
535535
std::string get_amici_version() const override {
536-
return "1.0.1.dev";
536+
return "1.0.1";
537537
}
538538

539539
/**
540540
* @brief returns the amici version that was used to generate the model
541541
* @return AMICI git commit hash
542542
*/
543543
std::string get_amici_commit() const override {
544-
return "39afcefa103c861d4efecc0d15196bab302eba69";
544+
return "33affbfd8bca2bd5e82a10cc6b764a63e292cc6f";
545545
}
546546

547547
bool has_quadratic_llh() const override {

models/model_calvetti_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_extension() -> CMakeExtension:
8989
author_email="model-author-todo",
9090
ext_modules=[MODEL_EXT],
9191
packages=find_namespace_packages(),
92-
install_requires=["amici==1.0.1.dev"],
92+
install_requires=["amici==1.0.1"],
9393
python_requires=">=3.11",
9494
package_data={},
9595
zip_safe=False,

models/model_dirac_py/model_dirac_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -520,15 +520,15 @@ class Model_model_dirac_py : public amici::Model_ODE {
520520
* @return AMICI version string
521521
*/
522522
std::string get_amici_version() const override {
523-
return "1.0.1.dev";
523+
return "1.0.1";
524524
}
525525

526526
/**
527527
* @brief returns the amici version that was used to generate the model
528528
* @return AMICI git commit hash
529529
*/
530530
std::string get_amici_commit() const override {
531-
return "39afcefa103c861d4efecc0d15196bab302eba69";
531+
return "33affbfd8bca2bd5e82a10cc6b764a63e292cc6f";
532532
}
533533

534534
bool has_quadratic_llh() const override {

models/model_dirac_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_extension() -> CMakeExtension:
8989
author_email="model-author-todo",
9090
ext_modules=[MODEL_EXT],
9191
packages=find_namespace_packages(),
92-
install_requires=["amici==1.0.1.dev"],
92+
install_requires=["amici==1.0.1"],
9393
python_requires=">=3.11",
9494
package_data={},
9595
zip_safe=False,

models/model_events_py/model_events_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -555,15 +555,15 @@ class Model_model_events_py : public amici::Model_ODE {
555555
* @return AMICI version string
556556
*/
557557
std::string get_amici_version() const override {
558-
return "1.0.1.dev";
558+
return "1.0.1";
559559
}
560560

561561
/**
562562
* @brief returns the amici version that was used to generate the model
563563
* @return AMICI git commit hash
564564
*/
565565
std::string get_amici_commit() const override {
566-
return "39afcefa103c861d4efecc0d15196bab302eba69";
566+
return "33affbfd8bca2bd5e82a10cc6b764a63e292cc6f";
567567
}
568568

569569
bool has_quadratic_llh() const override {

models/model_events_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_extension() -> CMakeExtension:
8989
author_email="model-author-todo",
9090
ext_modules=[MODEL_EXT],
9191
packages=find_namespace_packages(),
92-
install_requires=["amici==1.0.1.dev"],
92+
install_requires=["amici==1.0.1"],
9393
python_requires=">=3.11",
9494
package_data={},
9595
zip_safe=False,

models/model_jakstat_adjoint_py/model_jakstat_adjoint_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,15 +528,15 @@ class Model_model_jakstat_adjoint_py : public amici::Model_ODE {
528528
* @return AMICI version string
529529
*/
530530
std::string get_amici_version() const override {
531-
return "1.0.1.dev";
531+
return "1.0.1";
532532
}
533533

534534
/**
535535
* @brief returns the amici version that was used to generate the model
536536
* @return AMICI git commit hash
537537
*/
538538
std::string get_amici_commit() const override {
539-
return "39afcefa103c861d4efecc0d15196bab302eba69";
539+
return "33affbfd8bca2bd5e82a10cc6b764a63e292cc6f";
540540
}
541541

542542
bool has_quadratic_llh() const override {

models/model_jakstat_adjoint_py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def get_extension() -> CMakeExtension:
8989
author_email="model-author-todo",
9090
ext_modules=[MODEL_EXT],
9191
packages=find_namespace_packages(),
92-
install_requires=["amici==1.0.1.dev"],
92+
install_requires=["amici==1.0.1"],
9393
python_requires=">=3.11",
9494
package_data={},
9595
zip_safe=False,

models/model_nested_events_py/model_nested_events_py.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -528,15 +528,15 @@ class Model_model_nested_events_py : public amici::Model_ODE {
528528
* @return AMICI version string
529529
*/
530530
std::string get_amici_version() const override {
531-
return "1.0.1.dev";
531+
return "1.0.1";
532532
}
533533

534534
/**
535535
* @brief returns the amici version that was used to generate the model
536536
* @return AMICI git commit hash
537537
*/
538538
std::string get_amici_commit() const override {
539-
return "39afcefa103c861d4efecc0d15196bab302eba69";
539+
return "33affbfd8bca2bd5e82a10cc6b764a63e292cc6f";
540540
}
541541

542542
bool has_quadratic_llh() const override {

0 commit comments

Comments
 (0)