From 0293dcb50528814b5345fdb10d45870c88932c9e Mon Sep 17 00:00:00 2001 From: odow Date: Thu, 16 Sep 2021 12:24:50 +1200 Subject: [PATCH 1/2] Update release notes for v0.10.2 --- Project.toml | 2 +- docs/src/release_notes.md | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index fc4516a722..81416bce54 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "0.10.1" +version = "0.10.2" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/release_notes.md b/docs/src/release_notes.md index e96a91ebd0..a033b683c3 100644 --- a/docs/src/release_notes.md +++ b/docs/src/release_notes.md @@ -1,7 +1,21 @@ # Release notes +## v0.10.2 (September 16, 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.2). + +- Updated MathOptFormat to v1.0 +- Updated JSONSchema to v1.0 +- Added `Utilities.set_with_dimension` +- Det bridges now support getting `ConstraintFunction` and `ConstraintSet` +- Various minor bug fixes identified by improved testing + ## v0.10.1 (September 8, 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.1). + - Various fixes to `MOI.Test` ## v0.10.0 (September 6, 2021) From a731143a7aebb5fa1e107c519aec03e7922e5ab0 Mon Sep 17 00:00:00 2001 From: odow Date: Thu, 16 Sep 2021 12:26:22 +1200 Subject: [PATCH 2/2] Mention new optimize --- docs/src/release_notes.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/release_notes.md b/docs/src/release_notes.md index a033b683c3..0d58b4e68d 100644 --- a/docs/src/release_notes.md +++ b/docs/src/release_notes.md @@ -8,6 +8,8 @@ see the [tag notes](https://github.com/jump-dev/MathOptInterface.jl/releases/tag - Updated MathOptFormat to v1.0 - Updated JSONSchema to v1.0 - Added `Utilities.set_with_dimension` +- Added two-argument `optimize!(::AbstractOptimizer, ::ModelLike)` +- The experimental feature `copy_to_and_optimize!` has been removed - Det bridges now support getting `ConstraintFunction` and `ConstraintSet` - Various minor bug fixes identified by improved testing