From 05652c7b111ade78f9c5d9793c4e8a0ebb166740 Mon Sep 17 00:00:00 2001 From: odow Date: Wed, 30 Apr 2025 14:06:01 +1200 Subject: [PATCH 1/3] Prep for v1.40.0 --- Project.toml | 2 +- docs/src/changelog.md | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index ad73425959..27fb65d397 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.39.0" +version = "1.40.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index c8be9e74f0..fa46ded872 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,33 @@ 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.40.0 (May 2, 2025) + +### Added + + - Added [`Utilities.distance_to_set`](@ref) for [`PositiveSemidefiniteConeTriangle`](@ref) + and [`PositiveSemidefiniteConeSquare`](@ref) (#2729) + - Added [`Bridges.Constraint.HermitianToComplexSymmetricBridge`](@ref) (#2724) + +### Fixed + + - Fixed Bridge tests for non-invertible constraint bridge (#2713) + - Fixed bridge weights for SOS(1|2)ToMILPBridge (#2723) + - Fixed `Bridges.Constraint.SetMapBridge` with `Complex` number types (#2733) + +### Other + + - `FileFormats.NL` clarify comment about binary format (#2720) + - Added more packages to solver-tests.yml (#2721) + - Removed `@show` from test of MockOptimizer (#2725) + - Added `@testset` to [`Bridges.runtests`](@ref) (#2726), (#2734) + - Update dJuliaFormatter to v2 (#2731) + - Various improvements to `Nonlinear.ReverseAD` (#2730), (#2736), (#2737), + (#2738), (#2740), (#2744), (#2745) + - Bumped Julia version to v1.10 for documentation (#2735) + - Fixed tests on nightly (#2742) + - Added import MathOptInterface as MOI to DocTestSetup (#2746) + ## v1.39.0 (April 10, 2025) ### Added From b21b17c5247ace84915dd827d9f50448044e9fec Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 2 May 2025 13:02:19 +1200 Subject: [PATCH 2/3] Update changelog.md --- docs/src/changelog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index fa46ded872..792e61217b 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -23,11 +23,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Other - - `FileFormats.NL` clarify comment about binary format (#2720) + - Clarified comment about binary format in `FileFormats.NL` (#2720) - Added more packages to solver-tests.yml (#2721) - Removed `@show` from test of MockOptimizer (#2725) - Added `@testset` to [`Bridges.runtests`](@ref) (#2726), (#2734) - - Update dJuliaFormatter to v2 (#2731) + - Updated JuliaFormatter to v2 (#2731) - Various improvements to `Nonlinear.ReverseAD` (#2730), (#2736), (#2737), (#2738), (#2740), (#2744), (#2745) - Bumped Julia version to v1.10 for documentation (#2735) From c150f9730f3538aee6b5080ad75a6b8f12f19a0c Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Sun, 4 May 2025 11:58:32 +1200 Subject: [PATCH 3/3] 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 792e61217b..51122236b1 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.40.0 (May 2, 2025) +## v1.40.0 (May 4, 2025) ### Added