From ee313beac6e9853fe1ae3bab79befa0f51a27886 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 21 Oct 2024 20:42:36 +1300 Subject: [PATCH] Prep for v1.32.0 (#2562) --- Project.toml | 2 +- docs/src/changelog.md | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index d1c079f2ec..20f446db26 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.31.2" +version = "1.32.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 5d6ace38a6..6aec89d324 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,32 @@ 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.32.0 (October 21, 2024) + +### Added + + - Added support for user-defined univariate operators which do not support + second derivatives (#2542) + - Added the [`NodeLimit`](@ref) attribute (#2552) + - Added support for `Utilities.filter_variables` with + [`VectorNonlinearFunction`](@ref) (#2556) + +### Fixed + + - Fixed [`Bridges.Constraint.TableToMILPBridge`](@ref) if there is a constant + in the function (#2544) + - Fixed `FileFormats.MPS` and `FileFormats.LP` to read separate variable bounds + instead of an [`Interval`](@ref) set (#2548) + - Fixed the variable domains in `Test.test_nonlinear_expression_hs110` (#2551) + - Fixed the dimension of `VectorNonlinearFunction` in tests (#2555) + - Fixed the use of `1:length(x)` in `Nonlinear.Coloring` (#2559) + - Fixed an index conflict in `Nonlinear.Coloring` (#2561) + +### Other + + - Documentation fixes (#2541) (#2543) (#2545) (#2557) (#2560) + - Formatting improvements (#2554) + ## v1.31.2 (August 30, 2024) ### Fixed