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.17.0 #3588

Merged
merged 10 commits into from
Dec 3, 2023
Merged
Show file tree
Hide file tree
Changes from 4 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
2 changes: 1 addition & 1 deletion 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.16.0"
version = "1.17.0"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.16.0) (`release-1.0` branch):
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.17.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.17.0) (`release-1.0` branch):
* Installation via the Julia package manager:
* `import Pkg; Pkg.add("JuMP")`
* Get help:
Expand Down
44 changes: 44 additions & 0 deletions docs/src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,50 @@
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.17.0 (November 28, 2023)

### Added

- Added [`start_value`](@ref), [`lower_bound`](@ref), and [`upper_bound`](@ref)
support for [`GenericAffExpr`](@ref) that are equivalent to a single
[`GenericVariableRef`](@ref) (#3551)
- Added [`SkipModelConvertScalarSetWrapper`](@ref) which is useful for
extensions looking to avoid [`model_convert`](@ref) (#3552)
odow marked this conversation as resolved.
Show resolved Hide resolved
- Added [`lp_matrix_data`](@ref) (#3573)

### Fixed

- Fixed [`variable_ref_type`](@ref) for unsupported types (#3556)
- Fixed convert type of constraint starting values (#3571)
- Fixed various methods to support `AbstractJuMPScalar` with `Distances.jl`
(#3583)
- Fixed `eachindex` for multiple arguments of [`Containers.DenseAxisArray`](@ref)
and [`Containers.SparseAxisArray`](@ref) (#3587)
- Expressions with more than 60 terms now print in truncated form. This
prevents large expressions from being accidentally printed to terminal or
IJulia output (#3575)

### Other

- Improved error messages for:
- Addition and subtraction between a matrix and a scalar (#3557) (#3558)
- Variables with non-constant bounds (#3583)
- Invalid indicator constraints (#3584)
- Added new solvers to the documentation:
- `EAGO.jl` (#3560) (#3561)
odow marked this conversation as resolved.
Show resolved Hide resolved
- [Manopt.jl](@ref) (#3568)
odow marked this conversation as resolved.
Show resolved Hide resolved
- Added new tutorials:
- [Approximating nonlinear functions](@ref) (#3563)
- [Classifiers](@ref) (#3569)
- Improved documentation for:
- [`Semicontinuous`](@ref) and [`Semiinteger`](@ref) variables (#3562)
- [`SOS1`](@ref) and [`SOS2`](@ref) (#3565)
- [`start_value`](@ref) of [`HermitianPSDCone`](@ref) (#3564)
- Function tracing (#3570)
- Nonlinear operators with vector arguments (#3577)
- Indicator connstraints (#3582)

Check failure on line 51 in docs/src/changelog.md

View workflow job for this annotation

GitHub Actions / vale

[vale] docs/src/changelog.md#L51

[Vale.Spelling] Did you really mean 'connstraints'?
Raw output
{"message": "[Vale.Spelling] Did you really mean 'connstraints'?", "location": {"path": "docs/src/changelog.md", "range": {"start": {"line": 51, "column": 17}}}, "severity": "ERROR"}
odow marked this conversation as resolved.
Show resolved Hide resolved
- Updated package compat bounds (#3578)

## Version 1.16.0 (October 24, 2023)

### Added
Expand Down
Loading