From 7105e71fe4f05c01822c8a4e35299ea209d47331 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Wed, 3 Dec 2025 11:58:46 +1300 Subject: [PATCH 1/2] Prep for v1.47.0 --- Project.toml | 2 +- docs/src/changelog.md | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index ddb548f291..86a8410d23 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.46.0" +version = "1.47.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index c81c695cc1..22742399e0 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,31 @@ 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.47.0 (December 3, 2025) + +### Added + + - Allow penalty relaxation for [`ScalarNonlinearFunction`](@ref) constraints + (#2875) + - Improve hessian sparsity detection. This may result in a different sparsity + pattern of the Hessian and improved performance. (#2882) + - Added support for [`Utilities.distance_to_set`](@ref) and the + [`Parameter`](@ref) set (#2889) + +### Fixed + + - Fixed querying [`ConstraintConflictStatus`](@ref) in bridges with constrained + variables (#2871) + - Fixed the dimension of [`VectorNonlinearOracle`](@ref) in the tests and + docstrings (#2874) + +### Other + + - Updates to `solver-tests.yml` (#2872), (#2873), (#2880) + - Minor documentation updates (#2876), (#2878), (#2881), (#2886) + - Add a contributing page to the developer documentation (#2884) + - Add a custom `IntDisjointSet` type and remove DataStructures.jl (#2885) + ## v1.46.0 (October 21, 2025) ### Added From 844520bd96f00503905b9ea52708fe0025feddfe Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 5 Dec 2025 09:01:54 +1300 Subject: [PATCH 2/2] Update --- docs/src/changelog.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 22742399e0..dc45a6238c 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,7 +7,7 @@ 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.47.0 (December 3, 2025) +## v1.47.0 (December 5, 2025) ### Added @@ -31,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Minor documentation updates (#2876), (#2878), (#2881), (#2886) - Add a contributing page to the developer documentation (#2884) - Add a custom `IntDisjointSet` type and remove DataStructures.jl (#2885) + - Improved the performance of reading MPS files (#2892) ## v1.46.0 (October 21, 2025)