Skip to content

Commit d384cd8

Browse files
authored
Merge pull request #447 from isaacsas/v10.1
V10.1
2 parents e877f63 + 5ba101a commit d384cd8

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

HISTORY.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Breaking updates and feature summaries across releases
22

33
## Catalyst unreleased (master branch)
4-
- **BREAKING:** Added support for `@unpack observable_variable = rn` and `rn.observable_variable`. This requires a new inner constructor definition.
4+
5+
## Catalyst 10.1
6+
- Added support for `@unpack observable_variable = rn` and
7+
`rn.observable_variable`. This requires a new inner constructor definition for
8+
`ReactionSystem`s, but is not considered breaking as the inner constructor is
9+
considered private.
10+
- Support added for ModelingToolkit 7 and Symbolics 4.
511

612
## Catalyst 10.0
713
- `ReactionSystem(rxs::Vector{Reaction}, t)` should now work and will infer the

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Catalyst"
22
uuid = "479239e8-5488-4da2-87a7-35f2df7eef83"
3-
version = "10.0.0"
3+
version = "10.1"
44

55
[deps]
66
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"

src/reactionsystem.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ struct ReactionSystem{U <: Union{Nothing,MT.AbstractSystem}} <: MT.AbstractTimeD
206206
"""Non-`Reaction` equations that further constrain the system"""
207207
constraints::U
208208

209+
# inner constructor is considered private and may change between non-breaking releases.
209210
function ReactionSystem(eqs, iv, states, ps, var_to_name, observed, name, systems, defaults, connection_type, csys;
210211
checks::Bool=true, skipvalue=false)
211212
if checks

0 commit comments

Comments
 (0)