Skip to content

Commit 4839f20

Browse files
v0.9.2 (#172)
1 parent e408189 commit 4839f20

5 files changed

Lines changed: 26 additions & 5 deletions

File tree

NEWS.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# News for EAGO Releases
22

3-
## [v0.9.1](https://github.com/PSORLab/EAGO.jl#master) (March 7, 2026)
3+
## [v0.9.2](https://github.com/PSORLab/EAGO.jl/releases/tag/v0.9.2) (April 24, 2026)
4+
5+
- Bumped DataStructures.jl compatibility to include v0.19.
6+
- Bumped MINLPTests.jl compatibility to v0.6.
7+
- Updated `unbounded_check!` to correctly bound branch variables excluding the epigraph variable.
8+
- Updated default `cp_depth` from 20 to 5.
9+
10+
## [v0.9.1](https://github.com/PSORLab/EAGO.jl/releases/tag/v0.9.1) (March 7, 2026)
411

512
- Removed PrettyTables.jl dependency.
613
- The `display_table!` function now prints information in a similar manner to the `print_iteration!` function.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "EAGO"
22
uuid = "bb8be931-2a91-5aca-9f87-79e1cb69959a"
33
authors = ["Matthew Wilhelm <matthew.wilhelm@uconn.edu>, Robert Gottlieb <robert.x.gottlieb@uconn.edu>, Dimitri Alston <dimitri.alston@uconn.edu>, Alireza Miraliakbar <alireza.miraliakbar@uconn.edu>, and Matthew Stuber <matthew.stuber@uconn.edu>"]
4-
version = "0.9.1"
4+
version = "0.9.2"
55

66
[deps]
77
Cassette = "7057c7e9-c182-5462-911a-8362d720325c"

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,14 @@ The EAGO package has numerous features: a solver accessible from JuMP/MathOptInt
104104

105105
## Recent News
106106

107-
### [v0.9.1](https://github.com/PSORLab/EAGO.jl#master) (March 7, 2026)
107+
### [v0.9.2](https://github.com/PSORLab/EAGO.jl/releases/tag/v0.9.2) (April 24, 2026)
108+
109+
- Bumped DataStructures.jl compatibility to include v0.19.
110+
- Bumped MINLPTests.jl compatibility to v0.6.
111+
- Updated `unbounded_check!` to correctly bound branch variables excluding the epigraph variable.
112+
- Updated default `cp_depth` from 20 to 5.
113+
114+
### [v0.9.1](https://github.com/PSORLab/EAGO.jl/releases/tag/v0.9.1) (March 7, 2026)
108115

109116
- Removed PrettyTables.jl dependency.
110117
- The `display_table!` function now prints information in a similar manner to the `print_iteration!` function.

docs/src/news.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# News for EAGO Releases
22

3-
## [v0.9.1](https://github.com/PSORLab/EAGO.jl#master) (March 7, 2026)
3+
## [v0.9.2](https://github.com/PSORLab/EAGO.jl/releases/tag/v0.9.2) (April 24, 2026)
4+
5+
- Bumped DataStructures.jl compatibility to include v0.19.
6+
- Bumped MINLPTests.jl compatibility to v0.6.
7+
- Updated `unbounded_check!` to correctly bound branch variables excluding the epigraph variable.
8+
- Updated default `cp_depth` from 20 to 5.
9+
10+
## [v0.9.1](https://github.com/PSORLab/EAGO.jl/releases/tag/v0.9.1) (March 7, 2026)
411

512
- Removed PrettyTables.jl dependency.
613
- The `display_table!` function now prints information in a similar manner to the `print_iteration!` function.

src/eago_optimizer/moi_wrapper.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ MOI.get(m::Optimizer, ::MOI.DualStatus) = MOI.NO_SOLUTION
222222
MOI.get(m::Optimizer, ::MOI.ObjectiveBound) = m._objective_bound
223223
MOI.get(m::Optimizer, ::MOI.NumberOfVariables) = m._input_problem._variable_count
224224
MOI.get(m::Optimizer, ::MOI.SolverName) = "EAGO - Easy Advanced Global Optimization"
225-
MOI.get(m::Optimizer, ::MOI.SolverVersion) = "v0.9.1"
225+
MOI.get(m::Optimizer, ::MOI.SolverVersion) = "v0.9.2"
226226
MOI.get(m::Optimizer, ::MOI.TerminationStatus) = m._termination_status_code
227227
MOI.get(m::Optimizer, ::MOI.SolveTimeSec) = m._run_time
228228
MOI.get(m::Optimizer, ::MOI.NodeCount) = m._node_count

0 commit comments

Comments
 (0)