Skip to content

Commit 7227d72

Browse files
Fix minimum version bounds for OrdinaryDiffEq subpackages
The previous lower bounds for OrdinaryDiffEq subpackages were incompatible with OrdinaryDiffEqCore v2 (which is now required by DelayDiffEq). Updated bounds based on when each subpackage added OrdinaryDiffEqCore v2 compat: - OrdinaryDiffEqDefault: 1.1.0 -> 1.9 (v1.9 first supports OrdinaryDiffEqCore v2) - OrdinaryDiffEqFunctionMap: 1.1.1 -> 1.6 (v1.6 first supports OrdinaryDiffEqCore v2) - OrdinaryDiffEqNonlinearSolve: 1.6.0 -> 1.16 (v1.16 first supports OrdinaryDiffEqCore v2) - OrdinaryDiffEqDifferentiation: 1.6.0 -> 1.17 (v1.17 first supports OrdinaryDiffEqCore v2) - OrdinaryDiffEqRosenbrock: 1.2.0 -> 1.19 (v1.19 first supports OrdinaryDiffEqCore v2) These updates ensure that users can actually resolve to the minimum versions specified in the compat entries. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c394930 commit 7227d72

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ LinearAlgebra = "1"
3535
Logging = "1"
3636
OrdinaryDiffEq = "6.69"
3737
OrdinaryDiffEqCore = "2"
38-
OrdinaryDiffEqDefault = "1.1.0"
39-
OrdinaryDiffEqDifferentiation = "1.6.0"
40-
OrdinaryDiffEqFunctionMap = "1.1.1"
41-
OrdinaryDiffEqNonlinearSolve = "1.6.0"
42-
OrdinaryDiffEqRosenbrock = "1.2.0"
38+
OrdinaryDiffEqDefault = "1.9"
39+
OrdinaryDiffEqDifferentiation = "1.17"
40+
OrdinaryDiffEqFunctionMap = "1.6"
41+
OrdinaryDiffEqNonlinearSolve = "1.16"
42+
OrdinaryDiffEqRosenbrock = "1.19"
4343
Printf = "1"
4444
RecursiveArrayTools = "3"
4545
Reexport = "1.0"

0 commit comments

Comments
 (0)