Skip to content

Commit 5bd9f56

Browse files
authored
Prep for v1.7.0 (#3199)
1 parent 39e300b commit 5bd9f56

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "JuMP"
22
uuid = "4076af6c-e467-56ae-b986-b466b2749572"
33
repo = "https://github.com/jump-dev/JuMP.jl.git"
4-
version = "1.6.0"
4+
version = "1.7.0"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ embedded in [Julia](https://julialang.org/). You can find out more about us by
1010
visiting [jump.dev](https://jump.dev).
1111

1212

13-
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.6.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.6.0) (`release-1.0` branch):
13+
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.7.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.7.0) (`release-1.0` branch):
1414
* Installation via the Julia package manager:
1515
* `import Pkg; Pkg.add("JuMP")`
1616
* Get help:

docs/Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Ipopt = "=1.1.0"
3333
JSON = "0.21"
3434
JSONSchema = "1"
3535
Literate = "2.8"
36-
MathOptInterface = "=1.11.0"
36+
MathOptInterface = "=1.11.5"
3737
Plots = "1"
3838
SCS = "=1.1.3"
3939
SQLite = "1"

docs/make.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import Pkg
2-
Pkg.pkg"add Documenter#30baed5"
2+
Pkg.pkg"add Documenter#71e9f40"
33
import Documenter
44
import Literate
55
import Test
@@ -282,7 +282,7 @@ function _add_moi_pages()
282282
!!! warning
283283
This documentation in this section is a copy of the official
284284
MathOptInterface documentation available at
285-
[https://jump.dev/MathOptInterface.jl/v1.11.0](https://jump.dev/MathOptInterface.jl/v1.11.0).
285+
[https://jump.dev/MathOptInterface.jl/v1.11.5](https://jump.dev/MathOptInterface.jl/v1.11.5).
286286
It is included here to make it easier to link concepts between JuMP and
287287
MathOptInterface.
288288
"""

docs/src/changelog.md

+26
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,32 @@ CurrentModule = JuMP
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## Version v1.7.0 (January 25, 2023)
11+
12+
### Added
13+
14+
- Added support for `view` of a `Containers.DenseAxisArray` (#3152) (#3180)
15+
- Added support for containers of variables in [`ComplexPlane`](@ref) (#3184)
16+
- Added support for `minimum` and `maximum` generators in nonlinear expressions
17+
(#3189)
18+
- Added `SnoopPrecompile` statements that reduce the time-to-first-solve in
19+
Julia 1.9 (#3193) (#3195) (#3196) (#3197)
20+
21+
### Other
22+
23+
- Large refactoring of the tests (#3166) (#3167) (#3168) (#3169) (#3170) (#3171)
24+
- Remove unreachable code due to `VERSION` checks (#3172)
25+
- Document how to test JuMP extensions (#3174)
26+
- Fix method ambiguities in `Containers` (#3173)
27+
- Improve error message that is thrown when `=` is used instead of `==` in
28+
the [`@constraint`](@ref) macro (#3178)
29+
- Improve the error message when `Bool` is used instead of `Bin` in the
30+
[`@variable`](@ref) macro (#3180)
31+
- Update versions of the documentation (#3185)
32+
- Tidy the import of packages and remove unnecessary prefixes (#3186) (#3187)
33+
- Refactor `src/JuMP.jl` by moving methods into more relevant files (#3188)
34+
- Fix docstring of [`Model`](@ref) not appearing in the documentation (#3198)
35+
1036
## Version v1.6.0 (January 1, 2023)
1137

1238
### Added

0 commit comments

Comments
 (0)