From 17e21bb01a79e54eea52123e8cd5f253edb7eca9 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 27 Jul 2026 10:11:11 +1200 Subject: [PATCH 1/2] Prep for v1.52.0 --- Project.toml | 2 +- docs/src/changelog.md | 22 ++++++++++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index e071109853..9d40f97f50 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.51.2" +version = "1.52.0" [deps] CodecBzip2 = "523fee87-0ab8-5b00-afb7-3ecf72e48cfd" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 6be8762174..e39e1759dd 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,28 @@ 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.52.0 (July 28, 2026) + +### Added + +- Added [`Utilities.RuntimeProductOfSets`](@ref) (#3026) + +### Fixed + +- Fixed simplifying zero and one terms in [`Nonlinear.SymbolicAD.simplify!`](@ref) + (#3023) +- Fixed [`Utilities.OrderedProductOfSets`](@ref) to handle zero-dimensional rows + (#3022) +- Fixed support for nested bridges which require `final_touch`. `final_touch` is + now called in the order that the bridges were created. (#3027) +- Fixed various bridges with non-Float64 eltype (#3035) + +### Other + +- Updated GitHub actions (#3024), (#3028) +- Added support for OrderedCollections@2 (#3029) +- Fixed formatting for latest JuliaFormatter release (#3031) + ## v1.51.2 (July 17, 2026) ### Fixed From 76d3d1f26431ca47fd8b2aa6fb6aa8909097a9f0 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 28 Jul 2026 11:24:56 +1200 Subject: [PATCH 2/2] Apply suggestion from @odow --- 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 e39e1759dd..069352e4e1 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -21,7 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 (#3022) - Fixed support for nested bridges which require `final_touch`. `final_touch` is now called in the order that the bridges were created. (#3027) -- Fixed various bridges with non-Float64 eltype (#3035) +- Fixed various bridges with non-Float64 coefficient type (#3035) ### Other