Skip to content

Commit

Permalink
Bumping up version number. (#13403)
Browse files Browse the repository at this point in the history
### Description
Bumping up version number to 1.13.1



### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
  • Loading branch information
jchen351 committed Oct 21, 2022
1 parent 95bd0e7 commit b353e0b
Show file tree
Hide file tree
Showing 13 changed files with 117 additions and 102 deletions.
2 changes: 1 addition & 1 deletion VERSION_NUMBER
@@ -1 +1 @@
1.13.0
1.13.1
5 changes: 5 additions & 0 deletions docs/python/README.rst
Expand Up @@ -8,6 +8,11 @@ For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://ak
Changes
-------

1.13.1
^^^^^^

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

1.13.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.

2 changes: 1 addition & 1 deletion js/common/package.json
Expand Up @@ -8,7 +8,7 @@
},
"author": "fs-eire",
"module": "dist/lib/index.js",
"version": "1.13.0",
"version": "1.13.1",
"jsdelivr": "dist/ort-common.min.js",
"scripts": {
"prepare": "tsc && webpack"
Expand Down
6 changes: 3 additions & 3 deletions js/node/package-lock.json

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

2 changes: 1 addition & 1 deletion js/node/package.json
Expand Up @@ -13,7 +13,7 @@
3
]
},
"version": "1.13.0",
"version": "1.13.1",
"dependencies": {
"onnxruntime-common": "file:../common"
},
Expand Down
2 changes: 1 addition & 1 deletion js/react_native/package.json
Expand Up @@ -38,7 +38,7 @@
"registry": "https://registry.npmjs.org/"
},
"source": "lib/index",
"version": "1.13.0",
"version": "1.13.1",
"main": "dist/commonjs/index",
"homepage": "https://github.com/microsoft/onnxruntime/blob/main/js/react_native/README.md",
"files": [
Expand Down
176 changes: 91 additions & 85 deletions js/react_native/yarn.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions js/web/package-lock.json

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

2 changes: 1 addition & 1 deletion js/web/package.json
Expand Up @@ -9,7 +9,7 @@
},
"author": "fs-eire",
"module": "./lib/index.js",
"version": "1.13.0",
"version": "1.13.1",
"jsdelivr": "dist/ort.min.js",
"dependencies": {
"flatbuffers": "^1.12.0",
Expand Down
2 changes: 1 addition & 1 deletion onnxruntime/__init__.py
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.13.0"
__version__ = "1.13.1"
__author__ = "Microsoft"

# we need to do device version validation (for example to check Cuda version for an onnxruntime-training package).
Expand Down
8 changes: 6 additions & 2 deletions onnxruntime/core/session/onnxruntime_c_api.cc
Expand Up @@ -2583,6 +2583,7 @@ static constexpr OrtApi ort_api_1_to_12 = {
&OrtApis::UpdateCANNProviderOptions,
&OrtApis::GetCANNProviderOptionsAsString,
&OrtApis::ReleaseCANNProviderOptions,
// End of Version 13 - DO NOT MODIFY ABOVE (see above text for more information)
};

// Asserts to do a some checks to ensure older Versions of the OrtApi never change (will detect an addition or deletion but not if they cancel out each other)
Expand All @@ -2598,10 +2599,13 @@ static_assert(offsetof(OrtApi, CreateSessionFromArrayWithPrepackedWeightsContain
static_assert(offsetof(OrtApi, GetSparseTensorIndices) / sizeof(void*) == 191, "Size of version 9 API cannot change");
static_assert(offsetof(OrtApi, SynchronizeBoundOutputs) / sizeof(void*) == 203, "Size of version 10 API cannot change");
static_assert(offsetof(OrtApi, SessionOptionsAppendExecutionProvider_MIGraphX) / sizeof(void*) == 209, "Size of version 11 API cannot change");
static_assert(offsetof(OrtApi, ReleaseKernelInfo) / sizeof(void*) == 218, "Size of version 12 API cannot change");
static_assert(offsetof(OrtApi, ReleaseKernelInfo) / sizeof(void *) == 218, "Size of version 12 API cannot change");
static_assert(offsetof(OrtApi, ReleaseCANNProviderOptions) / sizeof(void *) == 224,
"Size of version 13 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.13.0", "ORT_Version change detected, please follow below steps to ensure OrtApi is updated properly");
static_assert(std::string_view(ORT_VERSION) == "1.13.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_13 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
@@ -1,5 +1,5 @@
Name: onnxruntime
Version: 1.13.0
Version: 1.13.1
Release: 1%{?dist}
Summary: onnxruntime

Expand Down

0 comments on commit b353e0b

Please sign in to comment.