Skip to content

Commit

Permalink
Release 0.11.23
Browse files Browse the repository at this point in the history
Merge pull request #1632 from AMICI-dev/release/0.11.23
  • Loading branch information
dweindl authored Jan 11, 2022
2 parents 3a7c28e + 4ab0ce8 commit 287364e
Show file tree
Hide file tree
Showing 52 changed files with 5,013 additions and 2,100 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@master
with:
fetch-depth: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@master
with:
fetch-depth: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_benchmark_collection_models.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@master
with:
fetch-depth: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@master
with:
fetch-depth: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_python_ver_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: actions/checkout@v1
- uses: actions/checkout@master
with:
fetch-depth: 20

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_sbml_semantic_test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
"1000-1250", "1251-1780"]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@master
with:
fetch-depth: 1
- name: apt
Expand Down
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@

## v0.X Series

### v0.11.23 (2022-01-11)

Features:
* Added overload for Model::setParameterScale with vector<int> by @dilpath in
https://github.com/AMICI-dev/AMICI/pull/1614
* Removed assert_fun argument from gradient checking, improve output
by @dweindl, @FFroehlich in https://github.com/AMICI-dev/AMICI/pull/1609
* Added get_expressions_as_dataframe by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1621
* Added `id` field to ExpData and ReturnData by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1622
* Included condition id in dataframes by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1623

Fixes:
* C++: Fixed SUNMatrixWrapper ctor for size 0 matrices by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1608
* Python: Handle TemporaryDirectory cleanup failures on Windows by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1617
* Python: pysb.Model.initial_conditions throws a DeprecationWarning by
@PaulJonasJost in https://github.com/AMICI-dev/AMICI/pull/1620
* Fixed wrong array size in warnings by @dweindl in
https://github.com/AMICI-dev/AMICI/pull/1624

NOTE: AMICI 0.11.23 requires numpy<1.22.0

**Full Changelog**:
https://github.com/AMICI-dev/AMICI/compare/v0.11.22...v0.11.23

### v0.11.22 (2021-12-02)

* **Require sympy>=1.9,pysb>=1.13.1** by @FFroehlich, @dweindl
Expand Down
Loading

0 comments on commit 287364e

Please sign in to comment.