Skip to content

Commit 28b2fbe

Browse files
committed
Prep for v1.50.0
1 parent 0068b8a commit 28b2fbe

File tree

3 files changed

+40
-2
lines changed

3 files changed

+40
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "MathOptInterface"
22
uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
3-
version = "1.49.0"
3+
version = "1.50.0"
44

55
[deps]
66
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"

docs/src/changelog.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,45 @@ CurrentModule = MathOptInterface
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## v1.50.0 (March 20, 2026)
11+
12+
### Added
13+
14+
- Added support for reading defined variables in `.nl` files (#2938)
15+
- Added `;generic_names` support to LP and MOF file formats (#2947)
16+
- Added add support for relaxing vector constraints (#2966)
17+
- Added support for [`ScalarCoefficientChange`](@ref) in
18+
[`Utilities.MatrixOfConstraints`](@ref) (#2975)
19+
20+
### Fixed
21+
22+
- Fix `isapprox` for [`ScalarNonlinearFunction`](@ref) and comparison to Number
23+
(#2934)
24+
- Fixed performance issue parsing each line of an MPS file (#2940)
25+
- Fixed MPS reader to allow the RHS name to be optional when reading (#2942)
26+
- Fixed [`Bridges.print_active_bridges`](@ref) for some constrained variable
27+
cases (#2943)
28+
- Fixed error messages for unsupported keyword arguments in file format models
29+
(#2946)
30+
- Fixed missing `Utilities.operate` in various `Bridges.Constraint.map_function`
31+
(#2948)
32+
- Fixed a bug with open intervals in `Bridges.Constraint.SemiToBinaryBridge`
33+
(#2963)
34+
- Fixed deleting some bridges before `Bridges.final_touch` was called (#2974)
35+
36+
### Other
37+
38+
- Added ParallelTestRunner.jl to parallelize the tests (#2932), (#2960)
39+
- Removed Julia `1-ubuntu-latest-x64` from CI (#2935)
40+
- Added an explicit test for method redefinitions instead of parsing logs
41+
(#2936)
42+
- Made minor formatting changes to the docs (#2939)
43+
- Installed `Dependabot` (#2949), (#2950), (#2951), (#2952), (#2953), (#2954),
44+
(#2958), (#2968)
45+
- Add a new test for solving a multiobjective problem (#2970)
46+
- We experimented with an `LDLFactorizations.jl` package extension before
47+
ultimately reverting it (#2933), (#2956), (#2959), (#2961), (#2972)
48+
1049
## v1.49.0 (January 30, 2026)
1150

1251
### Added

test/Bridges/Constraint/test_QuadtoSOCBridge.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,6 @@ function test_compute_sparse_sqrt_edge_cases()
386386
# Different element type. We could potentially make this work in future,
387387
# but it first requires https://github.com/JuliaSmoothOptimizers/LDLFactorizations.jl/pull/142
388388
BigFloat[-1.0 0.0; 0.0 1.0],
389-
BigFloat[1.0 0.0; 0.0 2.0],
390389
BigFloat[1.0 1.0; 1.0 1.0],
391390
]
392391
B = SparseArrays.sparse(A)

0 commit comments

Comments
 (0)