Skip to content

Populate NEWS for v0.6 #500

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 25, 2018
Merged
Changes from all 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
17 changes: 17 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,23 @@ MathOptInterface (MOI) release notes
v0.6.0 (August ??, 2018)
-----------------------

- Rename functions according to the [JuMP's style guide](http://www.juliaopt.org/JuMP.jl/latest/style.html):
* `copy!` with keyword arguments `copynames` and `warnattributes` ->
`copy_to` with keyword arguments `copy_names` and `warn_attributes`;
* `set!` -> `set`;
* `addvariable[s]!` -> `add_variable[s]`;
* `supportsconstraint` -> `supports_constraint`;
* `addconstraint[s]!` -> `add_constraint[s]`;
* `isvalid` -> `is_valid`;
* `Base.delete!` -> `delete`;
* `modify!` -> `modify`;
* `transform!` -> `transform`;
* `initialize!` -> `initialize`;
* `write` -> `write_to_file`; and
* `read!` -> `read_from_file`.
- Remove `free!` use `Base.finalize` instead.
- Add the `SquarePSD` bridge which transforms `PositiveSemidefiniteConeTriangle`
constraints into `PositiveSemidefiniteConeTriangle`.
- Add result fallback for `ConstraintDual` of variable-wise constraint,
`ConstraintPrimal` and `ObjectiveValue`.
- Add tests for `ObjectiveBound`.
Expand Down