mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-06-13 01:09:22 +00:00
Bump version to 1.9.1 (#9236)
* Bump version to 1.9.1 * Fix manual 1.9.1 update Co-authored-by: Sheil Kumar <sheilk@microsoft.com>
This commit is contained in:
parent
af0001cdfd
commit
efb60feb42
13 changed files with 17 additions and 11 deletions
|
|
@ -1 +1 @@
|
|||
1.9.0
|
||||
1.9.1
|
||||
|
|
@ -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.9.1 | **1.9** down to 1.2 | 14 | 2 | 7 | Windows AI 1.9+ |
|
||||
| 1.9.0 | **1.9** down to 1.2 | 14 | 2 | 7 | Windows AI 1.9+ |
|
||||
| 1.8.2 | **1.9** down to 1.2 | 14 | 2 | 7 | Windows AI 1.8+ |
|
||||
| 1.8.1 | **1.9** down to 1.2 | 14 | 2 | 7 | Windows AI 1.8+ |
|
||||
|
|
|
|||
|
|
@ -8,6 +8,11 @@ For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://ak
|
|||
Changes
|
||||
-------
|
||||
|
||||
1.9.1
|
||||
^^^^^
|
||||
|
||||
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.9.1
|
||||
|
||||
1.9.0
|
||||
^^^^^
|
||||
|
||||
|
|
|
|||
2
js/common/package-lock.json
generated
2
js/common/package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "onnxruntime-common",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"type": "git"
|
||||
},
|
||||
"author": "fs-eire",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"keywords": [
|
||||
"ONNX",
|
||||
"ONNXRuntime",
|
||||
|
|
|
|||
2
js/node/package-lock.json
generated
2
js/node/package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "onnxruntime-node",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"type": "git"
|
||||
},
|
||||
"author": "fs-eire",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"keywords": [
|
||||
"ONNX",
|
||||
"ONNXRuntime",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "onnxruntime-react-native",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"description": "Onnxruntime bridge for react native",
|
||||
"main": "dist/commonjs/index",
|
||||
"module": "dist/module/index",
|
||||
|
|
|
|||
2
js/web/package-lock.json
generated
2
js/web/package-lock.json
generated
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "onnxruntime-web",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
"type": "git"
|
||||
},
|
||||
"author": "fs-eire",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"keywords": [
|
||||
"ONNX",
|
||||
"ONNXRuntime",
|
||||
|
|
|
|||
|
|
@ -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.9.0"
|
||||
__version__ = "1.9.1"
|
||||
__author__ = "Microsoft"
|
||||
|
||||
# we need to do device version validation (for example to check Cuda version for an onnxruntime-training package).
|
||||
|
|
|
|||
|
|
@ -2379,7 +2379,7 @@ static_assert(offsetof(OrtApi, GetCurrentGpuDeviceId) / sizeof(void*) == 161, "S
|
|||
static_assert(offsetof(OrtApi, CreateSessionFromArrayWithPrepackedWeightsContainer) / sizeof(void*) == 169, "Size of version 8 API cannot change");
|
||||
|
||||
// So that nobody forgets to finish an API version, this check will serve as a reminder:
|
||||
static_assert(std::string_view(ORT_VERSION) == "1.9.0", "ORT_Version change detected, please follow below steps to ensure OrtApi is updated properly");
|
||||
static_assert(std::string_view(ORT_VERSION) == "1.9.1", "ORT_Version change detected, please follow below steps to ensure OrtApi is updated properly");
|
||||
// 1. Update the hardcoded version string in above static_assert to silence it
|
||||
// 2. If there were any APIs added to ort_api_1_to_9 above:
|
||||
// a. Add the 'End of version #' markers (pattern above should be obvious)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
Name: onnxruntime
|
||||
Version: 1.9.0
|
||||
Version: 1.9.1
|
||||
Release: 1%{?dist}
|
||||
Summary: onnxruntime
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue