Skip to content

Commit 287364e

Browse files
authored
Release 0.11.23
Merge pull request #1632 from AMICI-dev/release/0.11.23
2 parents 3a7c28e + 4ab0ce8 commit 287364e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+5013
-2100
lines changed

.github/workflows/deploy_branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-20.04
99

1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@master
1212
with:
1313
fetch-depth: 20
1414

.github/workflows/deploy_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-20.04
1212

1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@master
1515
with:
1616
fetch-depth: 20
1717

.github/workflows/test_benchmark_collection_models.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-20.04
2121

2222
steps:
23-
- uses: actions/checkout@v1
23+
- uses: actions/checkout@master
2424
with:
2525
fetch-depth: 20
2626

.github/workflows/test_performance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-20.04
2323

2424
steps:
25-
- uses: actions/checkout@v1
25+
- uses: actions/checkout@master
2626
with:
2727
fetch-depth: 20
2828

.github/workflows/test_python_ver_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
python-version: ${{ matrix.python-version }}
4040

41-
- uses: actions/checkout@v1
41+
- uses: actions/checkout@master
4242
with:
4343
fetch-depth: 20
4444

.github/workflows/test_sbml_semantic_test_suite.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
"1000-1250", "1251-1780"]
3030

3131
steps:
32-
- uses: actions/checkout@v1
32+
- uses: actions/checkout@master
3333
with:
3434
fetch-depth: 1
3535
- name: apt

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,35 @@
22

33
## v0.X Series
44

5+
### v0.11.23 (2022-01-11)
6+
7+
Features:
8+
* Added overload for Model::setParameterScale with vector<int> by @dilpath in
9+
https://github.com/AMICI-dev/AMICI/pull/1614
10+
* Removed assert_fun argument from gradient checking, improve output
11+
by @dweindl, @FFroehlich in https://github.com/AMICI-dev/AMICI/pull/1609
12+
* Added get_expressions_as_dataframe by @dweindl in
13+
https://github.com/AMICI-dev/AMICI/pull/1621
14+
* Added `id` field to ExpData and ReturnData by @dweindl in
15+
https://github.com/AMICI-dev/AMICI/pull/1622
16+
* Included condition id in dataframes by @dweindl in
17+
https://github.com/AMICI-dev/AMICI/pull/1623
18+
19+
Fixes:
20+
* C++: Fixed SUNMatrixWrapper ctor for size 0 matrices by @dweindl in
21+
https://github.com/AMICI-dev/AMICI/pull/1608
22+
* Python: Handle TemporaryDirectory cleanup failures on Windows by @dweindl in
23+
https://github.com/AMICI-dev/AMICI/pull/1617
24+
* Python: pysb.Model.initial_conditions throws a DeprecationWarning by
25+
@PaulJonasJost in https://github.com/AMICI-dev/AMICI/pull/1620
26+
* Fixed wrong array size in warnings by @dweindl in
27+
https://github.com/AMICI-dev/AMICI/pull/1624
28+
29+
NOTE: AMICI 0.11.23 requires numpy<1.22.0
30+
31+
**Full Changelog**:
32+
https://github.com/AMICI-dev/AMICI/compare/v0.11.22...v0.11.23
33+
534
### v0.11.22 (2021-12-02)
635

736
* **Require sympy>=1.9,pysb>=1.13.1** by @FFroehlich, @dweindl

0 commit comments

Comments
 (0)