Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for v1.23.3 #3854

Merged
merged 4 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JuMP"
uuid = "4076af6c-e467-56ae-b986-b466b2749572"
repo = "https://github.com/jump-dev/JuMP.jl.git"
version = "1.23.2"
version = "1.23.3"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand All @@ -20,7 +20,7 @@ DimensionalData = "0703355e-b756-11e9-17c0-8b28908087d0"
JuMPDimensionalDataExt = "DimensionalData"

[compat]
DimensionalData = "0.24, 0.25, 0.26.2, 0.27"
DimensionalData = "0.24, 0.25, 0.26.2, 0.27, 0.28"
LinearAlgebra = "<0.0.1, 1.6"
MacroTools = "0.5"
MathOptInterface = "1.25.2"
Expand Down
6 changes: 3 additions & 3 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ CSV = "0.10"
Clarabel = "=0.9.0"
DataFrames = "1"
DifferentiationInterface = "0.6.5"
DimensionalData = "0.27.3"
DimensionalData = "0.28.3"
Distributions = "0.25"
Documenter = "=1.6.0"
Documenter = "=1.7.0"
DocumenterCitations = "1"
Dualization = "0.5"
Enzyme = "0.13.7"
Expand All @@ -63,7 +63,7 @@ Literate = "2.8"
MarkdownAST = "0.1"
MathOptInterface = "=1.31.2"
MultiObjectiveAlgorithms = "=1.3.3"
PATHSolver = "=1.7.7"
PATHSolver = "=1.7.8"
ParametricOptInterface = "0.8.1"
Plots = "1"
SCS = "=2.0.1"
Expand Down
18 changes: 9 additions & 9 deletions docs/packages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# ============================= jump-dev packages ============================ #

[AmplNLWriter]
rev = "v1.2.1"
rev = "v1.2.2"
[BARON]
rev = "v0.8.5"
[Cbc]
Expand All @@ -55,9 +55,9 @@
[GLPK]
rev = "v1.2.1"
[Gurobi]
rev = "v1.3.0"
rev = "9bafe7d3e4ed198b97836362a62bb48a14d408bc"
[HiGHS]
rev = "v1.9.2"
rev = "v1.10.0"
[Hypatia]
rev = "v0.8.1"
has_html = true
Expand All @@ -79,7 +79,7 @@
[Pajarito]
rev = "4c7efa915bdc900b51d1c8290dc771403b11230a"
[ParametricOptInterface]
rev = "v0.8.1"
rev = "v0.8.2"
extension = true
[Pavito]
rev = "v0.3.9"
Expand Down Expand Up @@ -108,7 +108,7 @@
rev = "v0.7.3"
extension = true
[Xpress]
rev = "v0.17.0"
rev = "v0.17.1"

# =========================== non-jump-dev packages ========================== #

Expand Down Expand Up @@ -171,7 +171,7 @@
rev = "v0.2.2"
[Manopt]
user = "JuliaManifolds"
rev = "v0.5.0"
rev = "v0.5.3"
filename = "Readme.md"
[Optim]
user = "JuliaNLSolvers"
Expand All @@ -181,13 +181,13 @@
rev = "v0.8.1"
[PATHSolver]
user = "chkwon"
rev = "v1.7.7"
rev = "v1.7.8"
[Percival]
user = "JuliaSmoothOptimizers"
rev = "0448763a5f8aa9d43a5ad684309c839f70d10fbf"
[Plasmo]
user = "plasmo-dev"
rev = "v0.6.2"
rev = "v0.6.3"
has_html = true
extension = true
[ProxSDP]
Expand All @@ -199,7 +199,7 @@
rev = "v0.11.14"
[SDDP]
user = "odow"
rev = "v1.8.1"
rev = "v1.9.0"
has_html = true
extension = true
[Tulip]
Expand Down
26 changes: 25 additions & 1 deletion docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ 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.23.3 (October 21, 2024)

### Fixed

- Fixed a printing bug with scientific numbers in `MIME"text/latex"` (#3838)
- Fixed support for `AbstractString` in [`set_attribute`](@ref) (#3840)
- Fixed a bug reporting vector-valued duals in [`solution_summary`](@ref)
(#3846)
- Fixed [`solution_summary`](@ref) when there are duplicate variable and
constraint names (#3848)

### Other

- Documentation improvements (#3828) (#3831) (#3841) (#3843) (#3845)
- Added the tutorial [Tolerances and numerical issues](@ref) (#3829) (#3830)
(#3835)
- Improved the [Benders decomposition](@ref benders_decomposition_classical)
tutorial (#38232) (#3833) (#3834)
- Added `DifferentiationInterface.jl` to [Automatic differentiation of user-defined operators](@ref)
(#3836) (#3842)
- Added the tutorial [Writing a solver interface](@ref) (#3844)
- Added the section [Debugging performance problems](@ref) (#3850)
- Formatting improvements (#3849)

## Version 1.23.2 (September 13, 2024)

### Fixed
Expand Down Expand Up @@ -272,7 +296,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Invalid indicator constraints (#3584)
- Added new solvers to the documentation:
- `EAGO.jl` (#3560) (#3561)
- [Manopt.jl](@ref) (#3568)
- `Manopt.jl` (#3568)
- `Percival.jl` (#3567)
- Added new tutorials:
- [Approximating nonlinear functions](@ref) (#3563)
Expand Down
Loading