Skip to content

Commit 3fd41d2

Browse files
Bump version (#4666)
Signed-off-by: p-wysocki <[email protected]> Signed-off-by: p-wysocki <[email protected]> Co-authored-by: G. Ramalingam <[email protected]>
1 parent bad0697 commit 3fd41d2

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

VERSION_NUMBER

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.12.0
1+
1.13.0

docs/Versioning.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ ONNX version|IR version|Opset version ai.onnx|Opset version ai.onnx.ml|Opset ver
180180
1.10.2|8|15|2|1
181181
1.11.0|8|16|3|1
182182
1.12.0|8|17|3|1
183+
1.13.0|8|18|3|1
183184

184185
A programmatically accessible version of the above table is available [here](../onnx/helper.py). Limited version number
185186
information is also maintained in [version.h](../onnx/common/version.h) and [schema.h](../onnx/defs/schema.h).

onnx/common/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
namespace ONNX_NAMESPACE {
88

99
// Represents the most recent release version. Updated with every release.
10-
constexpr const char* LAST_RELEASE_VERSION = "1.12.0";
10+
constexpr const char* LAST_RELEASE_VERSION = "1.13.0";
1111

1212
} // namespace ONNX_NAMESPACE

onnx/defs/schema.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ class OpSchemaRegistry final : public ISchemaRegistry {
976976
// Version corresponding last release of ONNX. Update this to match with
977977
// the max version above in a *release* version of ONNX. But in other
978978
// versions, the max version may be ahead of the last-release-version.
979-
last_release_version_map_[ONNX_DOMAIN] = 17;
979+
last_release_version_map_[ONNX_DOMAIN] = 18;
980980
last_release_version_map_[AI_ONNX_ML_DOMAIN] = 3;
981981
last_release_version_map_[AI_ONNX_TRAINING_DOMAIN] = 1;
982982
last_release_version_map_[AI_ONNX_PREVIEW_TRAINING_DOMAIN] = 1;

onnx/helper.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
("1.10.2", 8, 15, 2, 1),
6868
("1.11.0", 8, 16, 3, 1),
6969
("1.12.0", 8, 17, 3, 1),
70+
("1.13.0", 8, 18, 3, 1),
7071
]
7172

7273
VersionMapType = Dict[Tuple[str, int], int]

onnx/test/helper_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,7 @@ def test(opset_versions: List[Tuple[str, int]], ir_version: int) -> None:
386386
test([("", 15)], 8)
387387
test([("", 16)], 8)
388388
test([("", 17)], 8)
389+
test([("", 18)], 8)
389390
# standard opset can be referred to using empty-string or "ai.onnx"
390391
test([("ai.onnx", 9)], 4)
391392
test([("ai.onnx.ml", 2)], 6)

0 commit comments

Comments
 (0)