From d71fd4b36ed5d752b26f7eba2de4d15acf699759 Mon Sep 17 00:00:00 2001 From: jClugstor Date: Tue, 4 Nov 2025 17:30:09 -0500 Subject: [PATCH 1/3] construction of DEOptions with typeof(verbose) --- src/solve.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solve.jl b/src/solve.jl index 5bc6d9e..3172f3d 100644 --- a/src/solve.jl +++ b/src/solve.jl @@ -262,7 +262,7 @@ function SciMLBase.__init(prob::SciMLBase.AbstractDDEProblem, typeof(d_discontinuities_internal), typeof(userdata), typeof(save_idxs), typeof(maxiters), typeof(tstops), - typeof(saveat), typeof(d_discontinuities)}(maxiters, + typeof(saveat), typeof(d_discontinuities), typeof(verbose)}(maxiters, save_everystep, adaptive, abstol_internal, From 3ff97f63f0b74be044b30b57013b3a9ed84b1f5e Mon Sep 17 00:00:00 2001 From: jClugstor Date: Tue, 4 Nov 2025 17:36:17 -0500 Subject: [PATCH 2/3] bump OrdinaryDiffEqCore version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index c773a9d..5e6a6a9 100644 --- a/Project.toml +++ b/Project.toml @@ -35,7 +35,7 @@ ForwardDiff = "0.10.38, 1.0.1" LinearAlgebra = "1" Logging = "1" OrdinaryDiffEq = "6.69" -OrdinaryDiffEqCore = "1.34.0" +OrdinaryDiffEqCore = "1.37.0" OrdinaryDiffEqDefault = "1.1.0" OrdinaryDiffEqDifferentiation = "1.6.0" OrdinaryDiffEqFunctionMap = "1.1.1" From 930662b793f438c05a0d42c52c3bd53115e9a1e0 Mon Sep 17 00:00:00 2001 From: jClugstor Date: Tue, 4 Nov 2025 17:36:45 -0500 Subject: [PATCH 3/3] bump patch version --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5e6a6a9..d9300de 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "DelayDiffEq" uuid = "bcd4f6db-9728-5f36-b5f7-82caef46ccdb" authors = ["Chris Rackauckas "] -version = "5.61.0" +version = "5.61.1" [deps] ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"