Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a797e46

Browse files
authoredJun 1, 2024
Merge pull request #441 from SciML/ap/test_master
Test master
2 parents 7deb1ed + c028c5e commit a797e46

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed
 

‎Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolve"
22
uuid = "8913a72c-1f9b-4ce2-8d82-65094dcecaec"
33
authors = ["SciML"]
4-
version = "3.12.3"
4+
version = "3.12.4"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
@@ -78,7 +78,7 @@ LeastSquaresOptim = "0.8.5"
7878
LineSearches = "7.2"
7979
LinearAlgebra = "1.10"
8080
LinearSolve = "2.30"
81-
MINPACK = "1.2"
81+
MINPACK = "=1.2"
8282
MaybeInplace = "0.1.3"
8383
ModelingToolkit = "9.15.0"
8484
NLSolvers = "0.5"

‎docs/src/devdocs/jacobian.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,3 @@
44
NonlinearSolve.AbstractNonlinearSolveJacobianCache
55
NonlinearSolve.JacobianCache
66
```
7-
8-
## SimpleNonlinearSolve functions
9-
10-
```@docs
11-
SimpleNonlinearSolve.jacobian_cache
12-
SimpleNonlinearSolve.value_and_jacobian
13-
```

2 commit comments

Comments
 (2)

avik-pal commented on Jun 1, 2024

@avik-pal
MemberAuthor

JuliaRegistrator commented on Jun 1, 2024

@JuliaRegistrator

Registration pull request created: JuliaRegistries/General/108058

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v3.12.4 -m "<description of version>" a797e46da6d96b5febda29e49748f7fbf1a345b6
git push origin v3.12.4
Please sign in to comment.