Skip to content

Commit

Permalink
Version 0.9.1 (#82)
Browse files Browse the repository at this point in the history
* Version 0.9.1

* rmv `with_optimizer` in `JuMP`
  • Loading branch information
tmigot authored Mar 5, 2022
1 parent ebe587f commit 6509a49
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "NLPModelsIpopt"
uuid = "f4238b75-b362-5c4c-b852-0801c9a21d71"
version = "0.9.0"
version = "0.9.1"

[deps]
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9"
Expand Down
2 changes: 1 addition & 1 deletion docs/src/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For comparison, we present the same problem and output using JuMP:
```@example ex2
using JuMP, Ipopt
model = Model(with_optimizer(Ipopt.Optimizer))
model = Model(Ipopt.Optimizer)
x0 = [-1.2; 1.0]
@variable(model, x[i=1:2], start=x0[i])
@NLobjective(model, Min, (x[1] - 1)^2 + 100 * (x[2] - x[1]^2)^2)
Expand Down

2 comments on commit 6509a49

@tmigot
Copy link
Member Author

@tmigot tmigot commented on 6509a49 Mar 5, 2022

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/56010

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.9.1 -m "<description of version>" 6509a4964548b38eddcf192b6761b0ee27769c60
git push origin v0.9.1

Please sign in to comment.