Skip to content

Commit

Permalink
Update ORT version to 1.15.1 (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
snnn authored Jul 25, 2023
1 parent a4aa781 commit 472c81d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 19 deletions.
7 changes: 1 addition & 6 deletions .pipelines/OneBranch.Official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time
- name: 'ortversion'
displayName: 'ONNX Runtime Version'
type: string
default: '1.15.0'
default: '1.15.1'

variables:
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)]
Expand Down Expand Up @@ -53,13 +53,8 @@ extends:
globalSdl:
tsa:
enabled: true
prefast:
enabled: true
binskim:
break: true # always break the build on binskim issues in addition to TSA upload
codeql:
python:
enabled: true
policheck:
break: true # always break the build on policheck issues. You can disable it by setting to 'false'
exclusionsFile: '$(REPOROOT)\ci_build\policheck_exclusions.xml'
Expand Down
7 changes: 1 addition & 6 deletions .pipelines/OneBranch.PullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time
- name: 'ortversion'
displayName: 'ONNX Runtime Version'
type: string
default: '1.15.0'
default: '1.15.1'

variables:
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)]
Expand Down Expand Up @@ -53,13 +53,8 @@ extends:
globalSdl:
tsa:
enabled: false
prefast:
enabled: true
binskim:
break: true # always break the build on binskim issues in addition to TSA upload
codeql:
python:
enabled: true
policheck:
break: true # always break the build on policheck issues. You can disable it by setting to 'false'
exclusionsFile: '$(REPOROOT)\ci_build\policheck_exclusions.xml'
Expand Down
2 changes: 1 addition & 1 deletion c_sharp/image_classification/image_classification.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.15.0" />
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.15.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.1" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion js/api-usage_inference-session/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"description": "This example is a demonstration of basic usage of InferenceSession.",
"main": "index.js",
"dependencies": {
"onnxruntime-node": "^1.15.0"
"onnxruntime-node": "^1.15.1"
}
}
2 changes: 1 addition & 1 deletion js/api-usage_tensor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"version": "1.0.0",
"description": "This example is a demonstration of basic usage of Tensor.",
"dependencies": {
"onnxruntime-node": "^1.15.0"
"onnxruntime-node": "^1.15.1"
}
}
2 changes: 1 addition & 1 deletion js/ort-whisper/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"dependencies": {
"copy-webpack-plugin": "^11.0.0",
"onnxruntime-web": "^1.15.0",
"onnxruntime-web": "^1.15.1",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
}
Expand Down
2 changes: 1 addition & 1 deletion js/quick-start_onnxruntime-node-bundler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"dev": "webpack --config ./webpack.config.js --mode development"
},
"dependencies": {
"onnxruntime-node": "^1.15.0"
"onnxruntime-node": "^1.15.1"
},
"devDependencies": {
"copy-webpack-plugin": "^8.1.1",
Expand Down
2 changes: 1 addition & 1 deletion js/quick-start_onnxruntime-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"description": "This example is a demonstration of basic usage of ONNX Runtime Node.js binding.",
"main": "index.js",
"dependencies": {
"onnxruntime-node": "^1.15.0"
"onnxruntime-node": "^1.15.1"
}
}
2 changes: 1 addition & 1 deletion js/quick-start_onnxruntime-web-bundler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "1.0.0",
"description": "This example is a demonstration of basic usage of ONNX Runtime Web using a bundler.",
"dependencies": {
"onnxruntime-web": "^1.15.0"
"onnxruntime-web": "^1.15.1"
},
"devDependencies": {
"copy-webpack-plugin": "^8.1.1",
Expand Down

0 comments on commit 472c81d

Please sign in to comment.