From 280c5444682f975943df41332346d5c944d7978c Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 30 Jan 2026 08:46:36 +1300 Subject: [PATCH 1/3] Prep for v1.49.0 --- Project.toml | 2 +- docs/src/changelog.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 5dab57eba0..20f2b66f3e 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.48.0" +version = "1.49.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 8b868fab88..4f4d0e197c 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,27 @@ 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.49.0 (January 30, 2026) + +### Added + +- Added support creating a [`Utilities.MatrixOfConstraints`](@ref) from existing + parts (#2902) +- Added [`Utilities.distance_to_set`](@ref) for more sets (#2914), (#2923), + (#2925), (#2926), (#2927) +- Implemented [`Utilities.extract_function`](@ref) for transpose matrix (#2915) +- Added support for [`Complements`](@ref) in `.nl` file format (#2916) +- Added [`Bridges.Constraint.SplitComplexIndicatorEqualToBridge`](@ref) (#2921) + +### Other + + - Documentation updates (#2905), (#2906) + - Fixed various errors found by JET (#2908), (#2911) + - Changed the error msg for [`GetAttributeNotAllowed`](@ref) when + [`is_set_by_optimize`](@ref) (#2910) + - Replaced JSON3.jl dependency by JSON.jl (#2918) + - Added `julia-downgrade-compat` to test compat lower bounds (#2919) + ## v1.48.0 (December 9, 2025) ### Added From 77356e99d149cf46118e679f8b2d1d373258ff6b Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 30 Jan 2026 09:10:48 +1300 Subject: [PATCH 2/3] Apply suggestions from code review --- 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 4f4d0e197c..c157cab9b6 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -23,10 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Documentation updates (#2905), (#2906) - Fixed various errors found by JET (#2908), (#2911) - - Changed the error msg for [`GetAttributeNotAllowed`](@ref) when + - Changed the error message for [`GetAttributeNotAllowed`](@ref) when [`is_set_by_optimize`](@ref) (#2910) - Replaced JSON3.jl dependency by JSON.jl (#2918) - - Added `julia-downgrade-compat` to test compat lower bounds (#2919) + - Added `julia-downgrade-compat` to test `[compat]` lower bounds (#2919) ## v1.48.0 (December 9, 2025) From 57ebba08aa2983eb2c0ecaeefed76aa544a22741 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 30 Jan 2026 12:00:44 +1300 Subject: [PATCH 3/3] Update changelog with fixed bugs and new entries Added a new section for fixed bugs and updated changelog entries. --- docs/src/changelog.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index c157cab9b6..057b8a199c 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -19,6 +19,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added support for [`Complements`](@ref) in `.nl` file format (#2916) - Added [`Bridges.Constraint.SplitComplexIndicatorEqualToBridge`](@ref) (#2921) +### Fixed + + - Fixed a bug converting `MutableSparseMatrixCSC` to `SparseMatrixCSC` (#2929) + ### Other - Documentation updates (#2905), (#2906) @@ -27,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [`is_set_by_optimize`](@ref) (#2910) - Replaced JSON3.jl dependency by JSON.jl (#2918) - Added `julia-downgrade-compat` to test `[compat]` lower bounds (#2919) + - Updated `solver-tests.yml` (#2930) ## v1.48.0 (December 9, 2025)