Bumping up version to 1.7 (#6736)

* bumping up version to 1.7

* Windows AI should align with ORT Version
This commit is contained in:
Olivia Jain 2021-02-17 19:07:38 -08:00 committed by GitHub
parent e44ac6524f
commit ea3aee4d5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9575 additions and 9570 deletions

View file

@ -1 +1 @@
1.6.0
1.7.0

View file

@ -26,6 +26,7 @@ For more details on ONNX Release versions, see [this page](https://github.com/on
| ONNX Runtime release version | ONNX release version | ONNX opset version | ONNX ML opset version | Supported ONNX IR version | [Windows ML Availability](https://docs.microsoft.com/en-us/windows/ai/windows-ml/release-notes/)|
|------------------------------|--------------------|--------------------|----------------------|------------------|------------------|
| 1.7.0 | **1.8** down to 1.2 | 13 | 2 | 7 | Windows AI 1.7+ |
| 1.6.0 | **1.8** down to 1.2 | 13 | 2 | 7 | Windows AI 1.6+ |
| 1.5.3 | **1.7** down to 1.2 | 12 | 2 | 7 | Windows AI 1.5+ |
| 1.5.2 | **1.7** down to 1.2 | 12 | 2 | 7 | Windows AI 1.5+ |

View file

@ -8,6 +8,11 @@ For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://ak
Changes
-------
1.7.0
^^^^^
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.7.0
1.6.0
^^^^^

19000
nodejs/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,72 +1,72 @@
{
"name": "onnxruntime",
"description": "Node.js binding of ONNXRuntime",
"version": "1.6.0",
"main": "./lib/index.js",
"types": "./types/lib/index.d.ts",
"scripts": {
"install": "prebuild-install -r napi || (tsc && node ./script/build)",
"build": "tsc && node ./script/build",
"buildd": "tsc && node ./script/build --config=Debug",
"buildr": "tsc && node ./script/build --config=RelWithDebInfo",
"rebuild": "tsc && node ./script/build --rebuild",
"rebuildd": "tsc && node ./script/build --rebuild --config=Debug",
"rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo",
"test": "mocha ./test/test-main",
"lint": "eslint . --ext .ts",
"prepack": "node ./script/pack-prebuild",
"format": "clang-format --glob=\"{{lib,test,script}/**/*.ts,src/**/*.{cc,h}}\" --style=file -i"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/onnxruntime.git"
},
"keywords": [
"ONNX",
"ONNX Runtime"
],
"os": [
"win32",
"darwin",
"linux"
],
"binary": {
"module_path": "./bin",
"host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
"module_path": "./bin",
"host": "https://onnxruntimetestdata.blob.core.windows.net/onnxruntime-node-prebuild/",
"napi_versions": [
3
]
},
"author": "fs-eire",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^9.0.6",
"@types/klaw-sync": "^6.0.0",
"@types/minimist": "1.2.1",
"@types/mocha": "^8.2.0",
"@types/tar-stream": "^2.2.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"clang-format": "^1.5.0",
"cmake-js": "^6.1.0",
"eslint": "^7.19.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.6.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"fs-extra": "^9.1.0",
"globby": "^11.0.2",
"jsonc": "^2.0.0",
"klaw-sync": "^6.0.0",
"minimist": "^1.2.5",
"mocha": "^8.2.1",
"node-addon-api": "^3.1.0",
"node-pre-gyp-github": "^1.4.3",
"onnx-proto": "^4.0.4",
"tar-stream": "^2.2.0",
"typedoc": "^0.20.25",
"typescript": "^4.1.3"
},
},
"license": "MIT",
"name": "onnxruntime",
"repository": {
"url": "https://github.com/Microsoft/onnxruntime.git",
"type": "git"
},
"author": "fs-eire",
"version": "1.7.0",
"dependencies": {
"prebuild-install": "^6.0.0"
}
}
},
"scripts": {
"lint": "eslint . --ext .ts",
"buildr": "tsc && node ./script/build --config=RelWithDebInfo",
"format": "clang-format --glob=\"{{lib,test,script}/**/*.ts,src/**/*.{cc,h}}\" --style=file -i",
"rebuild": "tsc && node ./script/build --rebuild",
"rebuildd": "tsc && node ./script/build --rebuild --config=Debug",
"buildd": "tsc && node ./script/build --config=Debug",
"build": "tsc && node ./script/build",
"install": "prebuild-install -r napi || (tsc && node ./script/build)",
"test": "mocha ./test/test-main",
"prepack": "node ./script/pack-prebuild",
"rebuildr": "tsc && node ./script/build --rebuild --config=RelWithDebInfo"
},
"keywords": [
"ONNX",
"ONNX Runtime"
],
"devDependencies": {
"typedoc": "^0.20.25",
"mocha": "^8.2.1",
"@types/fs-extra": "^9.0.6",
"@types/tar-stream": "^2.2.0",
"klaw-sync": "^6.0.0",
"minimist": "^1.2.5",
"@typescript-eslint/parser": "^4.14.2",
"clang-format": "^1.5.0",
"@types/klaw-sync": "^6.0.0",
"node-addon-api": "^3.1.0",
"cmake-js": "^6.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"typescript": "^4.1.3",
"jsonc": "^2.0.0",
"@types/mocha": "^8.2.0",
"node-pre-gyp-github": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"eslint-plugin-jsdoc": "^31.6.0",
"onnx-proto": "^4.0.4",
"globby": "^11.0.2",
"fs-extra": "^9.1.0",
"eslint": "^7.19.0",
"tar-stream": "^2.2.0",
"@types/minimist": "1.2.1",
"eslint-plugin-import": "^2.22.1"
},
"main": "./lib/index.js",
"os": [
"win32",
"darwin",
"linux"
],
"types": "./types/lib/index.d.ts",
"description": "Node.js binding of ONNXRuntime"
}

View file

@ -7,7 +7,7 @@ ONNX Runtime is a performance-focused scoring engine for Open Neural Network Exc
For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://aka.ms/onnxruntime/>`_
or the `Github project <https://github.com/microsoft/onnxruntime/>`_.
"""
__version__ = "1.6.0"
__version__ = "1.7.0"
__author__ = "Microsoft"
import os

View file

@ -2104,12 +2104,11 @@ static constexpr OrtApi ort_api_1_to_7 = {
&OrtApis::ReleaseArenaCfg,
// End of Version 6 - DO NOT MODIFY ABOVE (see above text for more information)
// Version 7 - In development, feel free to add/remove/rearrange here
&OrtApis::ModelMetadataGetGraphDescription,
&OrtApis::SessionOptionsAppendExecutionProvider_TensorRT,
&OrtApis::SetCurrentGpuDeviceId,
&OrtApis::GetCurrentGpuDeviceId,
// End of Version 7 - DO NOT MODIFY ABOVE (see above text for more information)
};
// Assert to do a limited check to ensure Version 1 of OrtApi never changes (will detect an addition or deletion but not if they cancel out each other)

View file

@ -1,5 +1,5 @@
Name: onnxruntime
Version: 1.6.0
Version: 1.7.0
Release: 1%{?dist}
Summary: onnxruntime