Skip to content

Commit c5935e6

Browse files
authored
Prep for v1.12.0 (#3417)
1 parent b456ac8 commit c5935e6

File tree

5 files changed

+49
-7
lines changed

5 files changed

+49
-7
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
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.11.1"
4+
version = "1.12.0"
55

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

README.md

Lines changed: 1 addition & 1 deletion
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.11.1/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.11.1) (`release-1.0` branch):
13+
**Latest Release**: [![version](https://juliahub.com/docs/JuMP/DmXqY/1.12.0/version.svg)](https://juliahub.com/ui/Packages/JuMP/DmXqY/1.12.0) (`release-1.0` branch):
1414
* Installation via the Julia package manager:
1515
* `import Pkg; Pkg.add("JuMP")`
1616
* Get help:

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ GLPK = "=1.1.2"
3838
HTTP = "1.5.4"
3939
HiGHS = "=1.5.2"
4040
Interpolations = "0.14"
41-
Ipopt = "=1.4.0"
41+
Ipopt = "=1.4.1"
4242
JSON = "0.21"
4343
JSONSchema = "1"
4444
Literate = "2.8"

docs/packages.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
[AmplNLWriter]
3535
rev = "v1.1.0"
3636
[BARON]
37-
rev = "1e98de4d9065a07c517f30498d435fda82fc3c80"
37+
rev = "v0.8.1"
3838
[Cbc]
3939
rev = "v1.1.1"
4040
[Clp]
@@ -57,7 +57,7 @@
5757
[HiGHS]
5858
rev = "v1.5.2"
5959
[Ipopt]
60-
rev = "v1.4.0"
60+
rev = "v1.4.1"
6161
[KNITRO]
6262
rev = "4c56de7684c42dd3c83c5fbc515ae1f424eed524"
6363
[MiniZinc]
@@ -68,12 +68,12 @@
6868
rev = "v1.0.0"
6969
has_html = true
7070
[Pajarito]
71-
rev = "v0.8.2"
71+
rev = "4c7efa915bdc900b51d1c8290dc771403b11230a"
7272
[ParametricOptInterface]
7373
rev = "1721e7b07bd1991238802a438ecb5af566d4b555"
7474
extension = true
7575
[Pavito]
76-
rev = "c0f3d81d9e9fff2963b872cf84fea35bfcf8b1d1"
76+
rev = "v0.3.7"
7777
[Penopt]
7878
rev = "486f07d3f3a11f12012ea3ada702a3ee55c8fdc5"
7979
[PolyJuMP]

docs/src/changelog.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,48 @@ 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 1.12.0 (June 19, 2023)
11+
12+
### Added
13+
14+
- Added `coefficient_type` keyword argument to [`add_bridge`](@ref) and
15+
[`remove_bridge`](@ref) (#3394)
16+
17+
### Fixed
18+
19+
- Fixed error message for matrix in [`HermitianPSDCone`](@ref) (#3369)
20+
- Fixed `EditURL` for custom documentation pages (#3373)
21+
- Fixed return type annotations for [`MOI.ConstraintPrimal`](@ref) and
22+
[`MOI.ConstraintDual`](@ref) (#3381)
23+
- Fixed printing change in Julia nightly (#3391)
24+
- Fixed printing of `Complex` coefficients (#3397)
25+
- Fixed printing of constraints in `text/latex` mode (#3405)
26+
- Fixed performance issue in [`Containers.rowtable`](@ref) (#3410)
27+
- Fixed bug when variables added to set of wrong dimension (#3411)
28+
29+
### Other
30+
31+
- Added more solver READMEs to the documentation (#3358) (#3360) (#3364)
32+
(#3365) (#3366) (#3368) (#3372) (#3374) (#3376) (#3379) (#3387) (#3389)
33+
- Added StatusSwitchingQP.jl to the installation table (#3354)
34+
- Updated checklist for adding a new solver (#3370)
35+
- Updated `extension-tests.yml` action (#3371) (#3375)
36+
- Color logs in GitHub actions (#3392)
37+
- Added new tutorials
38+
- [Optimal power flow](@ref) (#3395) (#3412)
39+
- [Lovász numbers](@ref) (#3399)
40+
- [Dualization](@ref) (#3402)
41+
- Updated JuMP paper citation (#3400)
42+
- Changed GitHub action to upload LaTeX logs when building documentation
43+
(#3403)
44+
- Fixed printing of SCS log in documentation (#3406)
45+
- Updated solver versions (#3407)
46+
- Updated documentation to use Julia v1.9 (#3398)
47+
- Replaced `_value_type` with `MOI.Utilities.value_type` (#3414)
48+
- Fixed a typo in docstring (#3415)
49+
- Refactored API documentation (#3386)
50+
- Updated SCIP license (#3420)
51+
1052
## Version 1.11.1 (May 19, 2023)
1153

1254
### Fixed

0 commit comments

Comments
 (0)