From 0574f08139224feaf9e3491f7e351689f4a92bad Mon Sep 17 00:00:00 2001 From: joaquimg Date: Sun, 15 Mar 2026 19:31:05 -0300 Subject: [PATCH] Prep for v0.15.2 --- Project.toml | 2 +- docs/src/changelog.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 6d216a18..2001fa6a 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ParametricOptInterface" uuid = "0ce4ce61-57bf-432b-a095-efac525d185e" authors = ["Tomás Gutierrez "] -version = "0.15.1" +version = "0.15.2" [deps] MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index e865c2cc..877df444 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,22 @@ CurrentModule = ParametricOptInterface 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). +## Version 0.15.2 (March 15, 2026) + +### Fixed + +- `MOI.VectorQuadraticFunction` with no parameters properly handled (#231) +- Fix `ListOfParametricConstraintTypesPresent` and `compute_conflict!` for `VectorQuadraticFunctions` (#235) +- Fixes in cubic function handling and constraint interpretation (#234) + +### Other + +- More efficient cubic functions (#233) +- More efficient `VectorQuadraticFunctions` (#235) +- More homogeneous internal code (#232) +- Add docs to internal functions (#236) +- More unit tests (#237) + ## Version 0.15.1 (March 2, 2026) ### Added