Skip to content

Commit

Permalink
Update version number for patch release v1.11.1 (#11317)
Browse files Browse the repository at this point in the history
* Bump version number to 1.11.1

* Bump up version to 1.11.1
  • Loading branch information
chilo-ms authored Apr 22, 2022
1 parent 2bfe2c6 commit 366f4eb
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 18 deletions.
2 changes: 1 addition & 1 deletion VERSION_NUMBER
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.0
1.11.1
1 change: 1 addition & 0 deletions docs/Versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.1 | **1.10** down to 1.2 | 15 | 2 | 7 | Windows AI 1.11+ |
| 1.11.0 | **1.10** down to 1.2 | 15 | 2 | 7 | Windows AI 1.11+ |
| 1.10.0 | **1.10** down to 1.2 | 15 | 2 | 7 | Windows AI 1.10+ |
| 1.9.0 | **1.10** down to 1.2 | 15 | 2 | 7 | Windows AI 1.9+ |
Expand Down
5 changes: 5 additions & 0 deletions docs/python/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://ak
Changes
-------

1.11.1
^^^^^^

Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.11.1

1.11.0
^^^^^^

Expand Down
4 changes: 2 additions & 2 deletions js/common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"author": "fs-eire",
"module": "dist/lib/index.js",
"version": "1.11.0",
"version": "1.11.1",
"jsdelivr": "dist/ort-common.min.js",
"scripts": {
"prepare": "tsc && webpack"
Expand All @@ -28,4 +28,4 @@
"main": "dist/ort-common.node.js",
"types": "dist/lib/index.d.ts",
"description": "ONNXRuntime JavaScript API library"
}
}
4 changes: 2 additions & 2 deletions js/node/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
3
]
},
"version": "1.11.0",
"version": "1.11.1",
"dependencies": {
"onnxruntime-common": "file:../common"
},
Expand Down Expand Up @@ -55,4 +55,4 @@
],
"types": "dist/index.d.ts",
"description": "ONNXRuntime Node.js binding"
}
}
4 changes: 2 additions & 2 deletions js/react_native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"registry": "https://registry.npmjs.org/"
},
"source": "lib/index",
"version": "1.11.0",
"version": "1.11.1",
"main": "dist/commonjs/index",
"homepage": "https://github.com/Microsoft/onnxruntime/js/react_native#readme",
"files": [
Expand Down Expand Up @@ -98,4 +98,4 @@
"bugs": {
"url": "https://github.com/Microsoft/onnxruntime/issues"
}
}
}
4 changes: 2 additions & 2 deletions js/web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions js/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"author": "fs-eire",
"module": "./lib/index.js",
"version": "1.11.0",
"version": "1.11.1",
"jsdelivr": "dist/ort.min.js",
"dependencies": {
"onnx-proto": "^4.0.4",
Expand Down Expand Up @@ -82,4 +82,4 @@
"main": "dist/ort-web.node.js",
"types": "./types/lib/index.d.ts",
"description": "A Javascript library for running ONNX models on browsers"
}
}
2 changes: 1 addition & 1 deletion onnxruntime/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
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.11.0"
__version__ = "1.11.1"
__author__ = "Microsoft"

# we need to do device version validation (for example to check Cuda version for an onnxruntime-training package).
Expand Down
2 changes: 1 addition & 1 deletion onnxruntime/core/session/onnxruntime_c_api.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2538,7 +2538,7 @@ static_assert(offsetof(OrtApi, SynchronizeBoundOutputs) / sizeof(void*) == 203,
static_assert(offsetof(OrtApi, SessionOptionsAppendExecutionProvider_MIGraphX) / sizeof(void*) == 209, "Size of version 11 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.11.0", "ORT_Version change detected, please follow below steps to ensure OrtApi is updated properly");
static_assert(std::string_view(ORT_VERSION) == "1.11.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_11 above:
// a. Add the 'End of version #' markers (pattern above should be obvious)
Expand Down
2 changes: 1 addition & 1 deletion package/rpm/onnxruntime.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: onnxruntime
Version: 1.11.0
Version: 1.11.1
Release: 1%{?dist}
Summary: onnxruntime

Expand Down

0 comments on commit 366f4eb

Please sign in to comment.