Skip to content

Commit cd55f55

Browse files
committed
update changelog for v0.8 release
1 parent eab9186 commit cd55f55

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@ PowerModels.jl Change Log
22
=================
33

44
### Staged
5+
- nothing
6+
7+
### v0.8.0
58
- Added support for asymmetric line charging in all formulations
69
- Added Matpower data file export function
710
- Added mathematical model to documentation
811
- Added parsing string data from IO objects
9-
- Added support for network data with multiple conductors
12+
- Added support for network data with multiple conductors (breaking)
1013
- Removed explicit series variables from branch flow model
11-
- Improved helper functions ref, var, con to work with multiple networks and conductors
14+
- Improved helper functions ref, var, con to work with multiple networks and multiple conductors
1215
- Minor robustness improvements to parsing PTI files
1316
- Minor issues closed #316
1417

test/matpower.jl

+9-9
Original file line numberDiff line numberDiff line change
@@ -207,12 +207,12 @@ end
207207

208208
function test_case(filename::AbstractString, parse_file::Function)
209209
temp_file = "temp.m"
210-
source_data = parse_file(filename)
210+
source_data = parse_file(filename)
211211

212212
io = PipeBuffer()
213213
PowerModels.export_matpower(io, source_data)
214214
destination_data = PowerModels.parse_matpower(io)
215-
215+
216216
@test InfrastructureModels.compare_dict(source_data, destination_data)
217217
end
218218

@@ -221,31 +221,31 @@ end
221221
test_case(file, PowerModels.parse_file)
222222
test_case(file, PowerModels.parse_matpower)
223223
end
224-
224+
225225
@testset "test case14" begin
226226
file = "../test/data/matpower/case14.m"
227227
test_case(file, PowerModels.parse_file)
228228
test_case(file, PowerModels.parse_matpower)
229229
end
230-
230+
231231
@testset "test case2" begin
232232
file = "../test/data/matpower/case2.m"
233233
test_case(file, PowerModels.parse_file)
234234
test_case(file, PowerModels.parse_matpower)
235235
end
236-
236+
237237
@testset "test case24" begin
238238
file = "../test/data/matpower/case24.m"
239239
test_case(file, PowerModels.parse_file)
240240
test_case(file, PowerModels.parse_matpower)
241241
end
242-
242+
243243
@testset "test case3_tnep" begin
244244
file = "../test/data/matpower/case3_tnep.m"
245245
test_case(file, PowerModels.parse_file)
246246
test_case(file, PowerModels.parse_matpower)
247247
end
248-
248+
249249
@testset "test case30" begin
250250
file = "../test/data/matpower/case30.m"
251251
test_case(file, PowerModels.parse_file)
@@ -292,7 +292,7 @@ end
292292
file = "../test/data/matpower/case5_dc.m"
293293
test_case(file, PowerModels.parse_file)
294294
test_case(file, PowerModels.parse_matpower)
295-
end
295+
end
296296

297297
@testset "test case5 tnep" begin
298298
file = "../test/data/matpower/case5_tnep.m"
@@ -304,5 +304,5 @@ end
304304
file = "../test/data/matpower/case7_tplgy.m"
305305
test_case(file, PowerModels.parse_file)
306306
test_case(file, PowerModels.parse_matpower)
307-
end
307+
end
308308
end

0 commit comments

Comments
 (0)