From 8b9f89a5749fc5713179d567107f98048c302a7a Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 16 Feb 2024 08:16:24 +1300 Subject: [PATCH] Prep for v1.20.0 (#3674) --- Project.toml | 2 +- docs/Project.toml | 2 +- docs/src/changelog.md | 17 +++++++++++++++++ 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index fd444df3081..8c4529cafc9 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "JuMP" uuid = "4076af6c-e467-56ae-b986-b466b2749572" repo = "https://github.com/jump-dev/JuMP.jl.git" -version = "1.19.0" +version = "1.20.0" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" diff --git a/docs/Project.toml b/docs/Project.toml index 5f3b3de49ca..78bc19267ba 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -52,7 +52,7 @@ Ipopt = "=1.6.0" JSON = "0.21" JSONSchema = "1" Literate = "2.8" -MathOptInterface = "=1.25.2" +MathOptInterface = "=1.25.3" MultiObjectiveAlgorithms = "=1.3.2" PATHSolver = "=1.7.2" Plots = "1" diff --git a/docs/src/changelog.md b/docs/src/changelog.md index eb6ac9fad91..05795588312 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,23 @@ CurrentModule = JuMP 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 1.20.0 (February 15, 2024) + +### Added + + - Added [`is_solved_and_feasible`](@ref) (#3668) + - Added support for `MOI.ModelLike` as the optimizer (#3667) + +### Fixed + + - Fixed compat of DimensionalData (#3666) + - Fixed `convert(::Type{NonlinearExpr}, ::Number)`(#3672) + +### Other + + - Added `Optim` to list of solvers (#3624) + - Improved linking within documentation (#3669) + ## Version 1.19.0 (February 1, 2024) ### Added