From 899df85f9eec86f2c6e7942123466c5542690bab Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 8 Dec 2025 16:26:24 +1300 Subject: [PATCH 1/3] Prep for v1.47.1 --- Project.toml | 2 +- docs/src/changelog.md | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 86a8410d23..013fe7ab43 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.47.0" +version = "1.47.1" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index dc45a6238c..a6600d639d 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,17 @@ 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.47.1 (December 8, 2025) + +### Fixed + + - Fixed a bug in the acyclic coloring algorithm that was introduced in v1.47.0 + (#2898) + +### Other + + - Fixed a typo in the documentation (#2895) + ## v1.47.0 (December 5, 2025) ### Added From c25363dc65d23780235a892e1c113de164146de1 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 9 Dec 2025 10:11:23 +1300 Subject: [PATCH 2/3] Update --- docs/src/changelog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index a6600d639d..9214236fb8 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -13,10 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed a bug in the acyclic coloring algorithm that was introduced in v1.47.0 (#2898) + - Fixed skipping `ConstraintDual` in `Test.test_vector_nonlinear_oracle_` (#2899) ### Other - Fixed a typo in the documentation (#2895) + - Added [Defining a new set](@ref) to the documentation (#2901) ## v1.47.0 (December 5, 2025) From 4c57a700b64e18b411c713b3db08df4aca9fc1af Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 9 Dec 2025 16:48:43 +1300 Subject: [PATCH 3/3] Update --- Project.toml | 2 +- docs/src/changelog.md | 7 ++++++- docs/src/reference/constraints.md | 2 ++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index 013fe7ab43..ab1e6af1dd 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.47.1" +version = "1.48.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 9214236fb8..8b868fab88 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,7 +7,12 @@ 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.47.1 (December 8, 2025) +## v1.48.0 (December 9, 2025) + +### Added + + - Added the [`LagrangeMultiplier`](@ref) and [`LagrangeMultiplierStart`](@ref) + attributes (#2890) ### Fixed diff --git a/docs/src/reference/constraints.md b/docs/src/reference/constraints.md index 5c1077c0c5..bc45abc2a6 100644 --- a/docs/src/reference/constraints.md +++ b/docs/src/reference/constraints.md @@ -43,4 +43,6 @@ NONBASIC NONBASIC_AT_LOWER NONBASIC_AT_UPPER SUPER_BASIC +LagrangeMultiplier +LagrangeMultiplierStart ```