Skip to content

prepare NEWS for 0.6 #515

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 1 commit into from
Aug 30, 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
10 changes: 5 additions & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
MathOptInterface (MOI) release notes
====================================

v0.6.0 (August ??, 2018)
v0.6.0 (August 30, 2018)
-----------------------

- The `MOIU.@model` and `MOIB.@bridge` macros now support functions and sets
defined in external modules. As a consequence, function and set names in the
macro arguments now need to be prefixed by the module defining them.
- Rename functions according to the [JuMP's style guide](http://www.juliaopt.org/JuMP.jl/latest/style.html):
macro arguments need to be prefixed by module name.
- Rename functions according to the [JuMP 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`;
Expand All @@ -21,13 +21,13 @@ v0.6.0 (August ??, 2018)
* `initialize!` -> `initialize`;
* `write` -> `write_to_file`; and
* `read!` -> `read_from_file`.
- Remove `free!` use `Base.finalize` instead.
- 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`.
- Add test for empty row in vector linear constraint.
- Add test for empty rows in vector linear constraint.
- Rework errors: `CannotError` has been renamed `NotAllowedError` and
the distinction between `UnsupportedError` and `NotAllowedError` is now
about whether the element is not supported (i.e. it cannot be copied a
Expand Down