Skip to content

Commit

Permalink
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions simpleArcParse.Tests.ps1
Original file line number Diff line number Diff line change
@@ -25,8 +25,8 @@ $simpleArcParse = $config.simple_arc_parse_path
describe 'simpleArcParse version' {
$version = (& $simpleArcParse version)

it 'version should be v0.11' {
$version | Should BeExactly 'v0.13'
it 'version should be v0.14' {
$version | Should BeExactly 'v0.14'
}
}

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

if (type == "version") {
cout << "v0.13" << endl;
cout << "v0.14" << endl;
return 0;
}

2 changes: 1 addition & 1 deletion upload-logs.ps1
Original file line number Diff line number Diff line change
@@ -105,7 +105,7 @@ if (-not $extra_upload_data) {
}

# Make sure that simpleArcParse version matches our expectation
$expected_simple_arc_version = "v0.13"
$expected_simple_arc_version = "v0.14"
$simple_arc_version = (& $simple_arc_parse version)
if ($simple_arc_version -eq "") {
Write-Host "Unable to determine the version of simpleArcParse"

0 comments on commit 12843a6

Please sign in to comment.