From 33b433207d53dcf6a1f4b922e19b2388637daafd Mon Sep 17 00:00:00 2001 From: odow Date: Thu, 4 Jan 2024 15:33:28 +1300 Subject: [PATCH 1/3] Prep for v1.25.0 --- Project.toml | 2 +- docs/src/changelog.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 2bdab8683b..43fb9009e5 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "MathOptInterface" uuid = "b8f27783-ece8-5eb3-8dc8-9495eed66fee" -version = "1.24.0" +version = "1.25.0" [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 7a818e094b..1660058db0 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,18 @@ 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.25.0 (January 5, 2024) + +### Added + + - Added the `AutomaticDifferentiationBackend` attribute (#2386) + +### Fixed + + - Fixed [`initialize`](@ref) for [`Nonlinear.ExprGraphOnly`](@ref) (#2387) + - Fixed converting 0-valued [`ScalarAffineFunction`](@ref) and [`ScalarQuadraticFunction`](@ref) + to [`ScalarNonlinearFunction`](@ref) (#2388) + ## v1.24.0 (January 2, 2024) ### Added From 26417cb154271f4b061e417cd0bb17b2fed5d419 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 5 Jan 2024 08:48:15 +1300 Subject: [PATCH 2/3] Update changelog.md --- docs/src/changelog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 1660058db0..2b1844f24c 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed [`initialize`](@ref) for [`Nonlinear.ExprGraphOnly`](@ref) (#2387) - Fixed converting 0-valued [`ScalarAffineFunction`](@ref) and [`ScalarQuadraticFunction`](@ref) to [`ScalarNonlinearFunction`](@ref) (#2388) + - Fixed reading `.nl` files with non-empty variable and constraint names (#2390) ## v1.24.0 (January 2, 2024) From b01ca8dedc68a0bf983dc8f53e338507611e1916 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 5 Jan 2024 09:37:35 +1300 Subject: [PATCH 3/3] Update changelog.md --- docs/src/changelog.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 2b1844f24c..47ccc0d6f9 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -19,6 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed converting 0-valued [`ScalarAffineFunction`](@ref) and [`ScalarQuadraticFunction`](@ref) to [`ScalarNonlinearFunction`](@ref) (#2388) - Fixed reading `.nl` files with non-empty variable and constraint names (#2390) + - Fixed reading `.nl` files with no objective (#2391) + - Fixed reading `.nl` files with free ranged constraints (#2392) ## v1.24.0 (January 2, 2024)