Skip to content

Commit

Permalink
update simpleArcParse version to 1.1
Browse files Browse the repository at this point in the history
Now that we have new functionality for checking boss maximum health and CM
detection, update the version number so that the upload-logs.ps1 script
can verify that simpleArcParse supports "is_cm".

Signed-off-by: Jacob Keller <jacob.keller@gmail.com>
  • Loading branch information
jacob-keller committed Oct 29, 2018
1 parent dd2bdcf commit 1984365
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions simpleArcParse.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ $simpleArcParse = $config.simple_arc_parse_path
describe 'simpleArcParse version' {
$version = (& $simpleArcParse version)

it 'version should be v1.0' {
$version | Should BeExactly 'v1.0'
it 'version should be v1.1' {
$version | Should BeExactly 'v1.1'
}
}

Expand Down
2 changes: 1 addition & 1 deletion simpleArcParse/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -923,7 +923,7 @@ int main(int argc, char *argv[])
}

if (type == "version") {
cout << "v1.0" << endl;
cout << "v1.1" << endl;
return 0;
}

Expand Down
2 changes: 1 addition & 1 deletion simpleArcParse/simpleArcParse.layout
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<ActiveTarget name="Release" />
<File name="main.cpp" open="1" top="1" tabpos="1" split="2" active="1" splitpos="853" zoom_1="0" zoom_2="0">
<Cursor>
<Cursor1 position="28761" topLine="870" />
<Cursor1 position="29748" topLine="903" />
<Cursor2 position="27371" topLine="829" />
</Cursor>
</File>
Expand Down
2 changes: 1 addition & 1 deletion upload-logs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ if (-not $extra_upload_data) {
}

# Make sure that simpleArcParse version matches our expectation
$expected_simple_arc_version = "v1.0"
$expected_simple_arc_version = "v1.1"
$simple_arc_version = (& $simple_arc_parse version)
if ($simple_arc_version -eq "") {
Write-Host "Unable to determine the version of simpleArcParse"
Expand Down

0 comments on commit 1984365

Please sign in to comment.