Skip to content

Commit 0c38ab8

Browse files
TorkelEisaacsas
andauthored
Update HISTORY.md
Co-authored-by: Sam Isaacson <[email protected]>
1 parent 13f3fe0 commit 0c38ab8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

HISTORY.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,15 @@ Catalyst v14 was prompted by the (breaking) release of ModelingToolkit v9, which
1515
- To be more consistent with ModelingToolkit's immutability requirement for systems, we have removed API functions that mutate `ReactionSystem`s such as `addparam!`, `addreaction!`, `addspecies`, `@add_reactions`, and `merge!`. Please use `ModelingToolkit.extend` and `ModelingToolkit.compose` to generate new merged and/or composed `ReactionSystem`s from multiple component systems.
1616

1717
#### General changes
18-
- The `default_t()` and `default_time_deriv()` functions are now the preferred approaches for creating the default time independent variable and its differential.
18+
- The `default_t()` and `default_time_deriv()` functions are now the preferred approaches for creating the default time independent variable and its differential. i.e.
19+
```julia
20+
# do
21+
t = default_t()
22+
@species A(t)
23+
24+
# avoid
25+
@variables t
26+
@species A(t)
1927
- It is now possible to add metadata to individual reactions, e.g. using:
2028
```julia
2129
rn = @reaction_network begin

0 commit comments

Comments
 (0)