From ef810677053d5662d58ae80bf0aa25a3daac120e Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 2 Sep 2022 08:38:52 +1200 Subject: [PATCH] Prep for v1.8.0 (#1989) --- Project.toml | 2 +- docs/src/release_notes.md | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 3f4f90c480..d516f4bc19 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.7.0" +version = "1.8.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/release_notes.md b/docs/src/release_notes.md index aac573e8c4..ed9f1a46f1 100644 --- a/docs/src/release_notes.md +++ b/docs/src/release_notes.md @@ -1,5 +1,27 @@ # Release notes +## v1.8.0 (September 1, 2022) + +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/v1.8.0). + +### New features + + - Added new sets + - `HyperRectangle` + - `Reified` + - Added new bridges + - `ReifiedAllDifferentToCountDistinctBridge` + - `ReifiedCountDistinctToMILPBridge` + - `SplitHyperRectangleBridge` + - Added support for `atan(y, x)` in `Nonlinear` + +### Bug fixes + + - Lazily construct expressions in `Nonlinear` so that expressions are updated + when `Nonlinear.Parameter` values are updated. + - Allow `NORM_LIMIT` as a `TerminationStatus` for unbounded problems in `Test`. + ## v1.7.0 (August 16, 2022) For a detailed list of the closed issues and pull requests from this release,