From 1286a2f5b4e019900dcab1b91d2cef51a653e61b Mon Sep 17 00:00:00 2001 From: odow Date: Tue, 9 Apr 2024 10:13:37 +1200 Subject: [PATCH 1/5] Prep for v1.27.2 --- Project.toml | 2 +- docs/src/changelog.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index cf038becd3..27f83e3d1a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.27.1" +version = "1.27.2" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index ea566ebf31..f2976228b5 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,23 @@ CurrentModule = MathOptInterface The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v1.27.2 (April 9, 2024) + +### Fixed + + - Fixed a correctness bug getting the set of a constraint that used both + variable and constraint bridges (#2464) + - Fixed `MethodError` in some bridges when called with `Complex`-valued + functions (#2468) + - Fixed reading MPS files that use `*` as the start of a name and not as a + comment (#2470) + +### Other + + - Updated `solver-tests.yml` (#2465) + - Removed two unused methods from `MOI.Bridges` (#2466) + - Improved docstring of [`Utilities.shift_constant`](@ref) (#2467) + ## v1.27.1 (March 27, 2024) ### Fixed From d86fabefb8b40e02e68c4922104afba775a5647d Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Thu, 11 Apr 2024 11:35:08 +1200 Subject: [PATCH 2/5] Update changelog.md --- docs/src/changelog.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index f2976228b5..216b760f38 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,12 +7,12 @@ CurrentModule = MathOptInterface The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v1.27.2 (April 9, 2024) +## v1.27.2 (April 11, 2024) ### Fixed - Fixed a correctness bug getting the set of a constraint that used both - variable and constraint bridges (#2464) + variable and constraint bridges (#2464), (#2472) - Fixed `MethodError` in some bridges when called with `Complex`-valued functions (#2468) - Fixed reading MPS files that use `*` as the start of a name and not as a @@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated `solver-tests.yml` (#2465) - Removed two unused methods from `MOI.Bridges` (#2466) - - Improved docstring of [`Utilities.shift_constant`](@ref) (#2467) + - Documentation updates (#2467), (#2473), (#2474) ## v1.27.1 (March 27, 2024) From 92f01820ef9727de76886a168f394edfd78746a0 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Thu, 11 Apr 2024 17:17:21 +1200 Subject: [PATCH 3/5] Update changelog.md --- docs/src/changelog.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 216b760f38..5266a751a0 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,12 +7,16 @@ CurrentModule = MathOptInterface The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v1.27.2 (April 11, 2024) +## v1.28.0 (April 11, 2024) + +### Added + + - Added [`Bridges.Constraint.ComplexNormInfinityToSecondOrderConeBridge`](@ref) (#2451) ### Fixed - Fixed a correctness bug getting the set of a constraint that used both - variable and constraint bridges (#2464), (#2472) + variable and constraint bridges (#2464) (#2472) - Fixed `MethodError` in some bridges when called with `Complex`-valued functions (#2468) - Fixed reading MPS files that use `*` as the start of a name and not as a @@ -23,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated `solver-tests.yml` (#2465) - Removed two unused methods from `MOI.Bridges` (#2466) - Documentation updates (#2467), (#2473), (#2474) + - Simplify reading CBF files (#2476) ## v1.27.1 (March 27, 2024) From b36b5f9fc1ad94f46295059c3681142ccda64e95 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Thu, 11 Apr 2024 17:17:37 +1200 Subject: [PATCH 4/5] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 27f83e3d1a..a4d2d74f0a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.27.2" +version = "1.28.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" From 5b78bc4d713075e34ac33beacb823e6bdf246461 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Thu, 11 Apr 2024 19:52:19 +1200 Subject: [PATCH 5/5] Update docs/src/changelog.md --- docs/src/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 5266a751a0..bf83e60de2 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed a correctness bug getting the set of a constraint that used both variable and constraint bridges (#2464) (#2472) - Fixed `MethodError` in some bridges when called with `Complex`-valued - functions (#2468) + functions (#2468) (#2475) - Fixed reading MPS files that use `*` as the start of a name and not as a comment (#2470)