From af40e41047a79f5a3d6563ff27022aa8358953af Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Fri, 17 Nov 2023 09:57:01 -0500 Subject: [PATCH] Bump project version --- Project.toml | 4 ++-- docs/src/tutorials/getting_started.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 0eb72ea4e..2d8e4b661 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "NonlinearSolve" uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec" authors = ["SciML"] -version = "2.8.1" +version = "2.8.2" [deps] ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b" @@ -56,7 +56,7 @@ NonlinearProblemLibrary = "0.1" PrecompileTools = "1" RecursiveArrayTools = "2" Reexport = "0.2, 1" -SciMLBase = "2.4" +SciMLBase = "2.8.2" SciMLOperators = "0.3" SimpleNonlinearSolve = "0.1.23" SparseArrays = "1.9" diff --git a/docs/src/tutorials/getting_started.md b/docs/src/tutorials/getting_started.md index 13ae48029..a5cc8786e 100644 --- a/docs/src/tutorials/getting_started.md +++ b/docs/src/tutorials/getting_started.md @@ -77,7 +77,7 @@ There are multiple return codes which can mean the solve was successful, and thu general command `SciMLBase.successful_retcode` to check whether the solution process exited as intended: -```@example +```@example 1 SciMLBase.successful_retcode(sol) ```