Skip to content

Commit 7897f20

Browse files
Merge pull request #383 from SciML/compathelper/new_version/2024-02-22-07-06-42-496-00575257023
CompatHelper: bump compat for ModelingToolkit to 9 for package docs, (keep existing compat)
2 parents e30b10d + fe891b6 commit 7897f20

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Documenter = "1"
3030
DocumenterCitations = "1"
3131
IncompleteLU = "0.2"
3232
LinearSolve = "2"
33-
ModelingToolkit = "8"
33+
ModelingToolkit = "8, 9"
3434
NonlinearSolve = "3"
3535
OrdinaryDiffEq = "6"
3636
Plots = "1"

docs/src/basics/diagnostics_api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ using ModelingToolkit, NonlinearSolve
3434
3535
# Define a nonlinear system
3636
eqs = [0 ~ σ * (y - x), 0 ~ x * (ρ - z) - y, 0 ~ x * y - β * z]
37-
@named ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
37+
@mtkbuild ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
3838
3939
u0 = [x => 1.0, y => 0.0, z => 0.0]
4040

docs/src/tutorials/modelingtoolkit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ using ModelingToolkit, NonlinearSolve
1313
1414
# Define a nonlinear system
1515
eqs = [0 ~ σ * (y - x), 0 ~ x * (ρ - z) - y, 0 ~ x * y - β * z]
16-
@named ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
16+
@mtkbuild ns = NonlinearSystem(eqs, [x, y, z], [σ, ρ, β])
1717
1818
u0 = [x => 1.0, y => 0.0, z => 0.0]
1919

0 commit comments

Comments
 (0)