Skip to content

Commit

Permalink
Update JuliaFormatter version (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
odow authored May 3, 2022
1 parent 87c2b97 commit 3db1f16
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
shell: julia --color=yes {0}
run: |
using Pkg
Pkg.add(PackageSpec(name="JuliaFormatter", version="0.13.2"))
Pkg.add(PackageSpec(name="JuliaFormatter", version="0.22.10"))
using JuliaFormatter
format("src/MOI_wrapper", verbose=true)
format("test", verbose=true)
Expand Down
3 changes: 2 additions & 1 deletion src/MOI_wrapper/MOI_wrapper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,8 @@ MOI.get(model::Optimizer, ::SecondaryStatus) = Cbc_secondaryStatus(model)
const _STATUS = Dict{Cint,String}(
Cint(-1) => "before branchAndBound",
Cint(0) =>
"finished - check isProvenOptimal or isProvenInfeasible to see if solution found (or check value of best solution)",
"finished - check isProvenOptimal or isProvenInfeasible to see if " *
"solution found (or check value of best solution)",
Cint(1) => "stopped - on maxnodes, maxsols, maxtime",
Cint(2) => "execution abandoned due to numerical dificulties",
Cint(5) => "user programmed interruption",
Expand Down

2 comments on commit 3db1f16

@odow
Copy link
Member Author

@odow odow commented on 3db1f16 May 3, 2022

Choose a reason for hiding this comment

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

@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/59610

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 v1.0.1 -m "<description of version>" 3db1f16751a18d4f200b15bfd6116925fbdfddb0
git push origin v1.0.1

Please sign in to comment.