From ee90eba6e1ddc103ab5e61d67e51fbd9b84be1a9 Mon Sep 17 00:00:00 2001 From: odow Date: Thu, 11 May 2023 10:49:27 +1200 Subject: [PATCH 1/6] Prep for v1.11.1 --- Project.toml | 2 +- README.md | 2 +- docs/packages.toml | 2 +- docs/src/changelog.md | 18 ++++++++++++++++++ 4 files changed, 21 insertions(+), 3 deletions(-) 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/packages.toml b/docs/packages.toml index 973f6228340..4c151c896db 100644 --- a/docs/packages.toml +++ b/docs/packages.toml @@ -146,7 +146,7 @@ rev = "44e0bff587208fb4e0779db440f4104bc0bba2ec" [SDDP] user = "odow" - rev = "v1.1.4" + rev = "v1.4.0" has_html = true extension = true # [Tulip] diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 4a87ebc3364..9a5320319a2 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,6 +7,24 @@ 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 12, 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 when vectorizing 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) + ## Version 1.11.0 (May 3, 2023) ### Added From c4a8069c0cdfed35fa59b281de552d069e083469 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Thu, 11 May 2023 13:46:24 +1200 Subject: [PATCH 2/6] Update changelog.md --- docs/src/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 9a5320319a2..5f361c348f6 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -14,7 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 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 when vectorizing sparse symmetric matrices (#3349) + - Fixed a performance bug in constraints with sparse symmetric matrices (#3349) ### Other From 90b6d6b9e91fd12bc0cf01a43e0b282809805544 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 15 May 2023 09:03:06 +1200 Subject: [PATCH 3/6] Apply suggestions from code review --- docs/packages.toml | 2 +- docs/src/changelog.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/packages.toml b/docs/packages.toml index 4c151c896db..b326d6f8f1b 100644 --- a/docs/packages.toml +++ b/docs/packages.toml @@ -146,7 +146,7 @@ rev = "44e0bff587208fb4e0779db440f4104bc0bba2ec" [SDDP] user = "odow" - rev = "v1.4.0" + rev = "v1.5.0" has_html = true extension = true # [Tulip] diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 5f361c348f6..d6fe4f48cbc 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,7 +7,7 @@ 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 12, 2023) +## Version 1.11.1 (May 15, 2023) ### Fixed From f598bb2fa57914e09540d186035b8b3fcb5f80a8 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Wed, 17 May 2023 10:54:03 +1200 Subject: [PATCH 4/6] Update Project.toml --- docs/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 6b46fd3bd8bc5f201fd9a3da152671f8079fe483 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Wed, 17 May 2023 10:54:38 +1200 Subject: [PATCH 5/6] Update docs/src/changelog.md --- docs/src/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index d6fe4f48cbc..38f75dfdc85 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,7 +7,7 @@ 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 15, 2023) +## Version 1.11.1 (May 17, 2023) ### Fixed From 10784955a6bb46543772fca58382aebf9bc4933d Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Fri, 19 May 2023 10:02:39 +1200 Subject: [PATCH 6/6] Update changelog.md --- docs/src/changelog.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/src/changelog.md b/docs/src/changelog.md index 38f75dfdc85..904d04838b4 100644 --- a/docs/src/changelog.md +++ b/docs/src/changelog.md @@ -7,7 +7,7 @@ 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 17, 2023) +## Version 1.11.1 (May 19, 2023) ### Fixed @@ -23,7 +23,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 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) + - 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)