Skip to content

Commit 131ff14

Browse files
Fix: Revert sublibrary version bumps to latest release versions
The PR incorrectly bumped sublibrary versions to their next versions (what they would be after the PR merges) instead of their current latest release versions. This commit reverts all sublibrary versions to their correct current release versions: - BracketingNonlinearSolve: 1.4.0 → 1.3.0 - NonlinearSolveBase: 1.15.0 → 1.14.0 - NonlinearSolveFirstOrder: 1.8.0 → 1.7.0 - NonlinearSolveHomotopyContinuation: 0.2.0 → 0.1.5 - NonlinearSolveQuasiNewton: 1.9.0 → 1.8.0 - NonlinearSolveSciPy: 1.1.0 → 1.0.0 - NonlinearSolveSpectralMethods: 1.4.0 → 1.3.0 - SCCNonlinearSolve: 1.5.0 → 1.4.0 - SciMLJacobianOperators: 0.1.9 → 0.1.8 - SimpleNonlinearSolve: 2.8.0 → 2.7.0 Also updated the corresponding compat bounds in the main Project.toml file.
1 parent 630390d commit 131ff14

File tree

11 files changed

+16
-16
lines changed

11 files changed

+16
-16
lines changed

Project.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Aqua = "0.8"
6363
ArrayInterface = "7.16"
6464
BandedMatrices = "1.5"
6565
BenchmarkTools = "1.4"
66-
BracketingNonlinearSolve = "1.4"
66+
BracketingNonlinearSolve = "1.3"
6767
CUDA = "5.5"
6868
CommonSolve = "0.2.4"
6969
ConcreteStructs = "0.2.3"
@@ -88,10 +88,10 @@ NLSolvers = "0.5"
8888
NLsolve = "4.5"
8989
NaNMath = "1"
9090
NonlinearProblemLibrary = "0.1.2"
91-
NonlinearSolveBase = "1.15"
92-
NonlinearSolveFirstOrder = "1.8"
93-
NonlinearSolveQuasiNewton = "1.9"
94-
NonlinearSolveSpectralMethods = "1.4"
91+
NonlinearSolveBase = "1.14"
92+
NonlinearSolveFirstOrder = "1.7"
93+
NonlinearSolveQuasiNewton = "1.8"
94+
NonlinearSolveSpectralMethods = "1.3"
9595
OrdinaryDiffEqTsit5 = "1.1.0"
9696
PETSc = "0.3"
9797
Pkg = "1.10"
@@ -103,7 +103,7 @@ ReTestItems = "1.24"
103103
Reexport = "1.2.2"
104104
SIAMFANLEquations = "1.0.1"
105105
SciMLBase = "2.69"
106-
SimpleNonlinearSolve = "2.8"
106+
SimpleNonlinearSolve = "2.7"
107107
SparseArrays = "1.10"
108108
SparseConnectivityTracer = "0.6.5, 1"
109109
SparseMatrixColorings = "0.4.5"

lib/BracketingNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "BracketingNonlinearSolve"
22
uuid = "70df07ce-3d50-431d-a3e7-ca6ddb60ac1e"
33
authors = ["Avik Pal <[email protected]> and contributors"]
4-
version = "1.4.0"
4+
version = "1.3.0"
55

66
[deps]
77
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"

lib/NonlinearSolveBase/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolveBase"
22
uuid = "be0214bd-f91f-a760-ac4e-3421ce2b2da0"
33
authors = ["Avik Pal <[email protected]> and contributors"]
4-
version = "1.15.0"
4+
version = "1.14.0"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

lib/NonlinearSolveFirstOrder/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolveFirstOrder"
22
uuid = "5959db7a-ea39-4486-b5fe-2dd0bf03d60d"
33
authors = ["Avik Pal <[email protected]> and contributors"]
4-
version = "1.8.0"
4+
version = "1.7.0"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

lib/NonlinearSolveHomotopyContinuation/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolveHomotopyContinuation"
22
uuid = "2ac3b008-d579-4536-8c91-a1a5998c2f8b"
33
authors = ["Aayush Sabharwal <[email protected]> and contributors"]
4-
version = "0.2.0"
4+
version = "0.1.5"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

lib/NonlinearSolveQuasiNewton/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolveQuasiNewton"
22
uuid = "9a2c21bd-3a47-402d-9113-8faf9a0ee114"
33
authors = ["Avik Pal <[email protected]> and contributors"]
4-
version = "1.9.0"
4+
version = "1.8.0"
55

66
[deps]
77
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"

lib/NonlinearSolveSciPy/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolveSciPy"
22
uuid = "4827a3aa-8a82-4c61-8bd0-3c7d3e464ee5"
33
authors = ["SciML"]
4-
version = "1.1.0"
4+
version = "1.0.0"
55

66
[deps]
77
ConcreteStructs = "2569d6c7-a4a2-43d3-a901-331e8e4be471"

lib/NonlinearSolveSpectralMethods/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "NonlinearSolveSpectralMethods"
22
uuid = "26075421-4e9a-44e1-8bd1-420ed7ad02b2"
33
authors = ["Avik Pal <[email protected]> and contributors"]
4-
version = "1.4.0"
4+
version = "1.3.0"
55

66
[deps]
77
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"

lib/SCCNonlinearSolve/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SCCNonlinearSolve"
22
uuid = "9dfe8606-65a1-4bb3-9748-cb89d1561431"
33
authors = ["Avik Pal <[email protected]> and contributors"]
4-
version = "1.5.0"
4+
version = "1.4.0"
55

66
[deps]
77
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"

lib/SciMLJacobianOperators/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SciMLJacobianOperators"
22
uuid = "19f34311-ddf3-4b8b-af20-060888a46c0e"
33
authors = ["Avik Pal <[email protected]> and contributors"]
4-
version = "0.1.9"
4+
version = "0.1.8"
55

66
[deps]
77
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"

0 commit comments

Comments
 (0)