From 19242ea713a5fb67906d21c1ed4f845d326f5f3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Fri, 17 May 2019 17:30:35 +0200 Subject: [PATCH 1/4] [ci skip] Add NEWS entry for MOI v0.9 --- NEWS.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/NEWS.md b/NEWS.md index 355f8846fd..85f17b1ab4 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,31 @@ MathOptInterface (MOI) release notes ==================================== +v0.9.0 (May 2?, 2019) +--------------------- + +- Support for Julia v0.6 and v0.7 are dropped (#714, #717). +- Add support for indicator constraints (#709). +- Add `RawParameter` attribute (#733). +- The field of `ObjectiveValue` was renamed to `result_index` (#729). +- The `_constant` and `Utilities.getconstant` function are renamed to `constant` + (#723). +- Add `REDUCTION_CERTIFICATE` result status (#734). +- Add abstract matrix sets (#731). +- Testing improvements: + * The testing guideline was update (#728). + * Add quadratic tests (#697). + * Add unit tests for `RawStatusString`, `SolveTime` and `SolverName` (#726). + * Small tweaks to existing tests (#702, #703). +- Bridges improvements: + * The bridges no longer store the constraint function and set before it is + briged, the bridges now have to implement `ConstraintFunction` and + `ConstraintSet` if the user wants to recover them. As a consequence, the + `@bridge` macro was removed (#722). + * Bridge are now instantiated with a `bridge_constraint` function instead of + using a constructor (#730). + * Fix constraint attributes for bridges (#699). + v0.8.4 (March 13, 2019) ----------------------- From b01292aaf07464881c0e7623a89ce0842e8b5bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Mon, 20 May 2019 10:54:10 +0200 Subject: [PATCH 2/4] [ci skip] address comments --- NEWS.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/NEWS.md b/NEWS.md index 85f17b1ab4..8b32ee6bf3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -13,10 +13,10 @@ v0.9.0 (May 2?, 2019) - Add `REDUCTION_CERTIFICATE` result status (#734). - Add abstract matrix sets (#731). - Testing improvements: - * The testing guideline was update (#728). - * Add quadratic tests (#697). - * Add unit tests for `RawStatusString`, `SolveTime` and `SolverName` (#726). - * Small tweaks to existing tests (#702, #703). + * The testing guideline was updated (#728). + * Quadratic tests were added (#697). + * Unit tests for `RawStatusString`, `SolveTime` and `SolverName` were added (#726). + * Existing tests had a few updates (#702, #703). - Bridges improvements: * The bridges no longer store the constraint function and set before it is briged, the bridges now have to implement `ConstraintFunction` and From d6a2b212790df1bb6a5e1c17525a56339e243781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Mon, 20 May 2019 10:57:13 +0200 Subject: [PATCH 3/4] Add constant_vector --- NEWS.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/NEWS.md b/NEWS.md index 8b32ee6bf3..43cc9bd77d 100644 --- a/NEWS.md +++ b/NEWS.md @@ -4,14 +4,14 @@ MathOptInterface (MOI) release notes v0.9.0 (May 2?, 2019) --------------------- -- Support for Julia v0.6 and v0.7 are dropped (#714, #717). -- Add support for indicator constraints (#709). -- Add `RawParameter` attribute (#733). +- Support for Julia v0.6 and v0.7 was dropped (#714, #717). +- Support for indicator constraints was added (#709). +- `RawParameter` attribute was added (#733). - The field of `ObjectiveValue` was renamed to `result_index` (#729). -- The `_constant` and `Utilities.getconstant` function are renamed to `constant` - (#723). -- Add `REDUCTION_CERTIFICATE` result status (#734). -- Add abstract matrix sets (#731). +- The `_constant` and `Utilities.getconstant` function were renamed to `constant` +- The `Utilities.constant` function was renamed to `Utilities.constant_vector` (#740). +- `REDUCTION_CERTIFICATE` result status was added (#734). +- Abstract matrix sets were added (#731). - Testing improvements: * The testing guideline was updated (#728). * Quadratic tests were added (#697). From 29206e73cf363adb29e61ae2e43a9bdfc99dc5f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Wed, 22 May 2019 12:17:22 +0200 Subject: [PATCH 4/4] [ci skip] Updates --- NEWS.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index 43cc9bd77d..3901f64fc3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -5,7 +5,7 @@ v0.9.0 (May 2?, 2019) --------------------- - Support for Julia v0.6 and v0.7 was dropped (#714, #717). -- Support for indicator constraints was added (#709). +- Support for indicator constraints was added (#709, #712). - `RawParameter` attribute was added (#733). - The field of `ObjectiveValue` was renamed to `result_index` (#729). - The `_constant` and `Utilities.getconstant` function were renamed to `constant` @@ -15,7 +15,8 @@ v0.9.0 (May 2?, 2019) - Testing improvements: * The testing guideline was updated (#728). * Quadratic tests were added (#697). - * Unit tests for `RawStatusString`, `SolveTime` and `SolverName` were added (#726). + * Unit tests for `RawStatusString`, `SolveTime`, `Silent` and `SolverName` + were added (#726, #741). * Existing tests had a few updates (#702, #703). - Bridges improvements: * The bridges no longer store the constraint function and set before it is