Skip to content

Commit 42121a8

Browse files
release notes
1 parent 804950a commit 42121a8

File tree

2 files changed

+30
-29
lines changed

2 files changed

+30
-29
lines changed

release-notes/0.1.14.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Release notes for sbmlsim 0.1.14
2+
3+
- Fix #81, feature timecourse concatenation and reuse in timecoursesim
4+
5+
This allows simplified creation of multiple dosing timecourse simulations and reuse
6+
of timecourse definitions in multiple simulations. E.g. repeated timecourse `[tc]*3`
7+
8+
```
9+
simulator = Simulator(MODEL_REPRESSILATOR)
10+
tc = Timecourse(
11+
start=0,
12+
end=50,
13+
steps=100,
14+
changes={"X": 10})
15+
16+
s = simulator._timecourse(
17+
simulation=TimecourseSim(
18+
[tc]*3
19+
)
20+
)
21+
```
22+
23+
- Fix #82, bugfix; remove time shift from discarded simulations
24+
- Fix #83, allow empty timecourses in timecoursesim
25+
- Fix #86, dependency update ray>=1.2.0
26+
- Fix #87, weighting by counts in parameter fitting
27+
- Fix #88, bugfix figure closing in parameter fitting
28+
- adding mypy configuration and initial mypy fixes
29+
- many flake8 fixes and type annotations
30+
- Fix #91, support hex colors in plot

release-notes/next-release.md

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1 @@
11
# Release notes for sbmlsim x.y.z
2-
3-
- Fix #81, feature timecourse concatenation and reuse in timecoursesim
4-
5-
This allows simplified creation of multiple dosing timecourse simulations and reuse
6-
of timecourse definitions in multiple simulations. E.g. repeated timecourse `[tc]*3`
7-
8-
```
9-
simulator = Simulator(MODEL_REPRESSILATOR)
10-
tc = Timecourse(
11-
start=0,
12-
end=50,
13-
steps=100,
14-
changes={"X": 10})
15-
16-
s = simulator._timecourse(
17-
simulation=TimecourseSim(
18-
[tc]*3
19-
)
20-
)
21-
```
22-
23-
- Fix #82, bugfix; remove time shift from discarded simulations
24-
- Fix #83, allow empty timecourses in timecoursesim
25-
- Fix #86, dependency update ray>=1.2.0
26-
- Fix #87, weighting by counts in parameter fitting
27-
- Fix #88, bugfix figure closing in parameter fitting
28-
- adding mypy configuration
29-
- many flake8 fixes and type annotations
30-
- Fix #91, support hex colors in plot

0 commit comments

Comments
 (0)