diff --git a/Project.toml b/Project.toml index b72d71206..d8ec44ac1 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "NonlinearSolve" uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec" authors = ["SciML"] -version = "3.15.0-DEV" +version = "3.15.0" [deps] ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b" @@ -80,12 +80,12 @@ Hwloc = "3" InteractiveUtils = "<0.0.1, 1" LazyArrays = "1.8.2, 2" LeastSquaresOptim = "0.8.5" -LineSearch = "0.1" +LineSearch = "0.1.2" LineSearches = "7.3" LinearAlgebra = "1.10" LinearSolve = "2.35" MINPACK = "1.2" -MaybeInplace = "0.1.3" +MaybeInplace = "0.1.4" ModelingToolkit = "9.41.0" NLSolvers = "0.5" NLsolve = "4.5" diff --git a/test/misc/other_tests.jl b/test/misc/other_tests.jl deleted file mode 100644 index 765177c38..000000000 --- a/test/misc/other_tests.jl +++ /dev/null @@ -1,10 +0,0 @@ -@testitem "No warning tests" tags=[:misc] begin - using NonlinearSolve - - f(u, p) = u .* u .- p - u0 = [1.0, 1.0] - p = 2.0 - prob = NonlinearProblem(f, u0, p) - @test_nowarn solve( - prob, NewtonRaphson(autodiff = AutoFiniteDiff(), linesearch = LineSearchesJL())) -end