From 0871cfb63c09de4637c2cd903b9994893483c914 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 2 Jan 2023 10:15:16 +1300 Subject: [PATCH] Prep for v1.6.0 (#3165) --- Project.toml | 2 +- README.md | 2 +- docs/src/changelog.md | 18 +++++++++++++++--- 3 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Project.toml b/Project.toml index c25b1e3e585..135c110f7a0 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.5.0" +version = "1.6.0" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" diff --git a/README.md b/README.md index 71e31d31709..415d5467a2a 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ embedded in [Julia](https://julialang.org/). You can find out more about us by visiting [jump.dev](https://jump.dev). -**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.5.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.5.0) (`release-1.0` branch): +**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.6.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.6.0) (`release-1.0` branch): * Installation via the Julia package manager: * `import Pkg; Pkg.add("JuMP")` * Get help: diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 72416d32737..1a89cca523a 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,22 +7,34 @@ 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). -## Unreleased +## Version v1.6.0 (January 1, 2023) ### Added - Added a `result` keyword argument to [`solution_summary`] to allow summarizing models with multiple solutions (#3138) - - Add [`relax_with_penalty!`](@ref), which is a useful tool when debugging + - Added [`relax_with_penalty!`](@ref), which is a useful tool when debugging infeasible models (#3140) + - Added [`has_start_value`](@ref) (#3157) + - Added support for [`HermitianPSDCone`](@ref) in constraints (#3154) + +### Fixed + + - Fixed promotion of complex expressions (#3150) (#3164) ### Other - Added Benders tutorial with in-place resolves (#3145) - Added more [Tips and tricks](@id linear_tips_and_tricks) for linear programs - (#3144) + (#3144) (#3163) - Clarified documentation that `start` can depend on the indices of a variable container (#3148) + - Replace instances of `length` and `size` by the recommended `eachindex` and + `axes` (#3149) + - Added a warning explaining why the model is dirty when accessing solution + results from a modified model (#3156) + - Clarify documentation that `PSD` ensures a symmetric matrix (#3159) + - Maintenance of the JuMP test suite (#3146) (#3158) (#3162) ## Version 1.5.0 (December 8, 2022)