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.22 #3744

Merged
merged 3 commits into from
May 12, 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.21.1"
version = "1.22.0"

[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"
DimensionalData = "0.24, 0.25, 0.26.2, 0.27"
LinearAlgebra = "<0.0.1, 1.6"
MacroTools = "0.5"
MathOptInterface = "1.25.2"
Expand Down
2 changes: 1 addition & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Ipopt = "=1.6.2"
JSON = "0.21"
JSONSchema = "1"
Literate = "2.8"
MathOptInterface = "=1.27.1"
MathOptInterface = "=1.29.0"
MultiObjectiveAlgorithms = "=1.3.2"
PATHSolver = "=1.7.4"
Plots = "1"
Expand Down
12 changes: 6 additions & 6 deletions docs/packages.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
[ECOS]
rev = "v1.1.2"
[GLPK]
rev = "v1.1.3"
rev = "v1.2.0"
[Gurobi]
rev = "v1.2.3"
[HiGHS]
Expand Down Expand Up @@ -122,10 +122,10 @@
has_html = true
[COPT]
user = "COPT-Public"
rev = "v1.1.15"
rev = "v1.1.16"
[COSMO]
user = "oxfordcontrol"
rev = "v0.8.8"
rev = "v0.8.9"
has_html = true
[DAQP]
user = "darnstrom"
Expand All @@ -144,7 +144,7 @@
rev = "e00a845d42653adf5d26c7cef1ef84fb990c91c7"
[InfiniteOpt]
user = "infiniteopt"
rev = "v0.5.8"
rev = "v0.5.9"
filename = "docs/jump/README.md"
extension = true
[Juniper]
Expand All @@ -171,13 +171,13 @@
# user = "JuliaOpt"
[Optim]
user = "JuliaNLSolvers"
rev = "v1.9.2"
rev = "v1.9.4"
[OSQP]
user = "osqp"
rev = "443706e34c2619acbe65281c60bbe850ca4a8fac"
[PATHSolver]
user = "chkwon"
rev = "v1.7.2"
rev = "v1.7.5"
[Percival]
user = "JuliaSmoothOptimizers"
rev = "0448763a5f8aa9d43a5ad684309c839f70d10fbf"
Expand Down
29 changes: 29 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@ 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.22.0 (May 12, 2024)

### Added

- Added `Base.complex(r, i)` where `r` and `i` may be real-valued variables or
affine or quadratic expressions (#3734)
- Added [`@force_nonlinear`](@ref) for controlling when affine and quadratic
expressions are instead parsed as nonlinear expressions. This can be useful
for advanced users in a limited set of circumstances. (#3732)
- Added support for returning the variable coefficients of a vector-valued
constraint via [`normalized_coefficient`](@ref). In addition,
[`set_normalized_coefficients`](@ref) has been softly deprecated (no warning
is thrown and old code will still work for all future 1.X releases of JuMP)
in favor of [`set_normalized_coefficient`](@ref). This change was made to
unify how we get and set variable coefficients. (#3743)

### Fixed

- Fixed missing `promote_operation` method that resulted in slow code (#3730)
- Improved performance of `getindex` for `Containers.DenseAxisArray` (#3731)
- Fixed the error message when the legacy nonlinear API is mixed with the new
nonlinear API. In particular, we now uniformly throw an error message when
unexpected objects occur in nonlinear expressions. (#3741)

### Other

- Updated documentation (#3727), (#3728), (#3739)
- Updated versions in GitHub actions (#3735)

## Version 1.21.1 (April 11, 2024)

### Fixed
Expand Down
Loading