Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
matthieugomez committed Nov 16, 2021
1 parent 538b4e3 commit bda4884
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "LeastSquaresOptim"
uuid = "0fc2ff8b-aaa3-5acd-a817-1944a5e08891"
version = "0.8.1"
version = "0.8.2"

[deps]
FiniteDiff = "6a86dc24-6348-571c-b903-95158fe2bd41"
Expand Down
3 changes: 1 addition & 2 deletions test/nonlinearsolvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,6 @@ function f(x)
out[2] = 10(x[2]-x[1]^2)
return out
end
nls = optimize(f, [0.0, 0.0], Dogleg())
nls = optimize(f, [BigFloat(0.0), BigFloat(0.0)], Dogleg())
nls = optimize(f, [BigFloat(0.0), BigFloat(0.0)], Dogleg())
nls = optimize(f, [BigFloat(0.0), BigFloat(0.0)], LevenbergMarquardt())

2 comments on commit bda4884

@matthieugomez
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/48868

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 v0.8.2 -m "<description of version>" bda4884ded48b88c9e9fe1c89b7e8dd8113a6994
git push origin v0.8.2

Please sign in to comment.