Skip to content

Commit

Permalink
Prep for v1.23.3
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Oct 21, 2024
1 parent 4876764 commit ed89847
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 15 deletions.
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
8 changes: 4 additions & 4 deletions docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ 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"
ForwardDiff = "0.10"
GLPK = "=1.2.1"
HTTP = "1.5.4"
HiGHS = "=1.9.2"
HiGHS = "=1.10.0"
Interpolations = "0.14"
Ipopt = "=1.6.6"
JSON = "0.21"
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 = "v1.3.1"
[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
24 changes: 24 additions & 0 deletions 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 nuumbers 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

0 comments on commit ed89847

Please sign in to comment.