diff --git a/Project.toml b/Project.toml index 19ba09ac3ca..35f79aab36f 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.11.0" +version = "1.11.1" [deps] LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" diff --git a/README.md b/README.md index 90304850c46..a62dbf05e4d 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.11.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.11.0) (`release-1.0` branch): +**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.11.1/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.11.1) (`release-1.0` branch): * Installation via the Julia package manager: * `import Pkg; Pkg.add("JuMP")` * Get help: diff --git a/docs/Project.toml b/docs/Project.toml index 597d1bc95a8..62a31ce3af5 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -36,7 +36,7 @@ Ipopt = "=1.2.1" JSON = "0.21" JSONSchema = "1" Literate = "2.8" -MathOptInterface = "=1.15.1" +MathOptInterface = "=1.16.0" MultiObjectiveAlgorithms = "=1.0.0" Plots = "1" SCS = "=1.1.4" diff --git a/docs/packages.toml b/docs/packages.toml index 8ba8c328c47..d8a725352ca 100644 --- a/docs/packages.toml +++ b/docs/packages.toml @@ -152,7 +152,7 @@ rev = "44e0bff587208fb4e0779db440f4104bc0bba2ec" [SDDP] user = "odow" - rev = "v1.1.4" + rev = "v1.5.0" has_html = true extension = true # [Tulip] diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 4a87ebc3364..904d04838b4 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,27 @@ 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.11.1 (May 19, 2023) + +### Fixed + + - Fixed a poor error message when `sum(::DenseAxisArray; dims)` was called + (#3338) + - Fixed support for dependent sets in the [`@variable`](@ref) macro (#3344) + - Fixed a performance bug in constraints with sparse symmetric matrices (#3349) + +### Other + + - Improved the printing of complex numbers (#3332) + - When printing, sets which contain constants ending in `.0` now print as + integers. This follows the behavior of constants in functions (#3341) + - Added `InfiniteOpt` to the extensions documentation (#3343) + - Added more documentation for the exponential cone (#3345) (#3347) + - Added checklists for developers (#3346) (#3355) + - Fixed test support upcoming Julia nightly (#3351) + - Fixed `extension-tests.yml` action (#3353) + - Add more solvers to the documentation (#3359) (#3361) (#3362) + ## Version 1.11.0 (May 3, 2023) ### Added