Skip to content

Commit d417de6

Browse files
committed
prep for release
1 parent 3ad3eed commit d417de6

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ PowerModels.jl Change Log
22
=========================
33

44
### Staged
5+
- nothing
6+
7+
### v0.19.9
58
- Fix implementation of polynomial costs above quadratic
69
- Add tests for opf objective expression types
710
- Update tests for compat with Julia v1.9 (#861)

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "PowerModels"
22
uuid = "c36e90e8-916a-50a6-bd94-075b64ef4655"
33
authors = ["Carleton Coffrin"]
44
repo = "https://github.com/lanl-ansi/PowerModels.jl"
5-
version = "0.19.8"
5+
version = "0.19.9"
66

77
[deps]
88
InfrastructureModels = "2030c09a-7f63-5d83-885d-db604e0e9cc0"

test/opf-obj.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ end
7171
pm = instantiate_model(data, ACPPowerModel, build_opf)
7272

7373
@test JuMP.objective_function(pm.model) == JuMP.AffExpr(0.0)
74-
@test isa(JuMP._nlp_objective_function(pm.model), JuMP.MOI.Nonlinear.Expression)
74+
# would be good to add a test like this one in a future version where the NL expression can be accessed with a public API
75+
#@test isa(JuMP._nlp_objective_function(pm.model), JuMP.MOI.Nonlinear.Expression)
7576
end
7677

7778
@testset "opf objective" begin

0 commit comments

Comments
 (0)