Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "MathOptInterface"
uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
version = "0.10.4"
version = "0.10.5"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand Down
12 changes: 12 additions & 0 deletions docs/src/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Release notes

## v0.10.5 (November 7, 2021)

For a detailed list of the closed issues and pull requests from this release,
see the [tag notes](https://github.com/jump-dev/MathOptInterface.jl/releases/tag/v0.10.5).

### Maintenance

- Make `normalize_and_add_constraint` more flexible
- Fix getter in `UniversalFallback`
- Update paper BibTeX
- Fix `test_solve_conflict_zeroone_ii`

## v0.10.4 (October 26, 2021)

For a detailed list of the closed issues and pull requests from this release,
Expand Down
2 changes: 1 addition & 1 deletion src/Test/test_solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1423,7 +1423,7 @@ function test_solve_conflict_zeroone_ii(
c2 = MOI.add_constraint(
model,
MOI.ScalarAffineFunction(MOI.ScalarAffineTerm.(one(T), [x]), zero(T)),
MOI.EqualTo(div(one(T), T(2))),
MOI.EqualTo(one(T) / T(2)),
Comment thread
joaquimg marked this conversation as resolved.
)
MOI.optimize!(model)
@test MOI.get(model, MOI.TerminationStatus()) == MOI.INFEASIBLE
Expand Down