Skip to content

Commit edd9f58

Browse files
authored
Bump version to 1.26.0 (#27955)
### Description Increase version number to 1.26.0. The rel-1.25.0 release branch has been cut. ### Changes - VERSION_NUMBER: 1.25.0 → 1.26.0 - ORT_API_VERSION: 25 → 26 (header + C API struct rename) - Python, JS, docs version strings updated via update_version.py - C# NativeTrainingMethods ORT_API_VERSION: 23 → 26 - samples/cxx/README.md example paths updated - docs/Versioning.md example updated ### Motivation and Context Per release process: bump main branch version immediately after cutting the release branch.
1 parent 1ea2266 commit edd9f58

22 files changed

Lines changed: 41 additions & 36 deletions

File tree

VERSION_NUMBER

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.25.0
1+
1.26.0

csharp/src/Microsoft.ML.OnnxRuntime/Training/NativeTrainingMethods.shared.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ static NativeTrainingMethods()
7676
DOrtGetApi OrtGetApi = (DOrtGetApi)Marshal.GetDelegateForFunctionPointer(NativeMethods.OrtGetApiBase().GetApi, typeof(DOrtGetApi));
7777
#endif
7878

79-
const uint ORT_API_VERSION = 23;
79+
const uint ORT_API_VERSION = 26;
8080
#if NETSTANDARD2_0
8181
IntPtr ortApiPtr = OrtGetApi(ORT_API_VERSION);
8282
api_ = (OrtApi)Marshal.PtrToStructure(ortApiPtr, typeof(OrtApi));

docs/Versioning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ npm --version # Should be v8.0 or newer
6161
6262
The script does **not** update the value of `ORT_API_VERSION` in [include/onnxruntime/core/session/onnxruntime_c_api.h](../include/onnxruntime/core/session/onnxruntime_c_api.h).
6363
64-
The value should be set to the second component of the version string. E.g., `25` for version `1.25.0`.
64+
The value should be set to the second component of the version string. E.g., `26` for version `1.26.0`.
6565
6666
5. **Review all changes**
6767

docs/python/README.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ For more information on ONNX Runtime, please see `aka.ms/onnxruntime <https://ak
88
Changes
99
-------
1010

11+
1.26.0
12+
^^^^^^
13+
14+
Release Notes : https://github.com/Microsoft/onnxruntime/releases/tag/v1.26.0
15+
1116
1.25.0
1217
^^^^^^
1318

include/onnxruntime/core/session/onnxruntime_c_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*
3939
* This value is used by some API functions to behave as this version of the header expects.
4040
*/
41-
#define ORT_API_VERSION 25
41+
#define ORT_API_VERSION 26
4242

4343
#ifdef __cplusplus
4444
extern "C" {

js/common/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
// This file is generated by /js/scripts/update-version.ts
55
// Do not modify file content manually.
66

7-
export const version = '1.25.0';
7+
export const version = '1.26.0';

js/common/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"license": "MIT",
33
"type": "module",
44
"name": "onnxruntime-common",
5-
"version": "1.25.0",
5+
"version": "1.26.0",
66
"repository": {
77
"url": "https://github.com/Microsoft/onnxruntime.git",
88
"type": "git"

js/node/lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
// This file is generated by /js/scripts/update-version.ts
55
// Do not modify file content manually.
66

7-
export const version = '1.25.0';
7+
export const version = '1.26.0';

js/node/package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)