Skip to content

Commit f81558d

Browse files
etiottojcwchen
andauthored
bump version to 1.12.0 (onnx#4209)
* bump version to 1.12.0 Signed-off-by: Ettore Tiotto <[email protected]> * Remove trailing white space Signed-off-by: Ettore Tiotto <[email protected]> Co-authored-by: Chun-Wei Chen <[email protected]>
1 parent 529f7ca commit f81558d

File tree

6 files changed

+7
-4
lines changed

6 files changed

+7
-4
lines changed

VERSION_NUMBER

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

docs/Versioning.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ ONNX version|IR version|Opset version ai.onnx|Opset version ai.onnx.ml|Opset ver
179179
1.10.1|8|15|2|1
180180
1.10.2|8|15|2|1
181181
1.11.0|8|16|3|1
182+
1.12.0|8|17|3|1
182183

183184
A programmatically accessible version of the above table is available [here](../onnx/helper.py). Limited version number
184185
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.11.0";
10+
constexpr const char* LAST_RELEASE_VERSION = "1.12.0";
1111

1212
} // namespace ONNX_NAMESPACE

onnx/defs/schema.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ class OpSchemaRegistry final : public ISchemaRegistry {
919919
// Version corresponding last release of ONNX. Update this to match with
920920
// the max version above in a *release* version of ONNX. But in other
921921
// versions, the max version may be ahead of the last-release-version.
922-
last_release_version_map_[ONNX_DOMAIN] = 16;
922+
last_release_version_map_[ONNX_DOMAIN] = 17;
923923
last_release_version_map_[AI_ONNX_ML_DOMAIN] = 3;
924924
last_release_version_map_[AI_ONNX_TRAINING_DOMAIN] = 1;
925925
last_release_version_map_[AI_ONNX_PREVIEW_TRAINING_DOMAIN] = 1;

onnx/helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
('1.10.0', 8, 15, 2, 1),
4141
('1.10.1', 8, 15, 2, 1),
4242
('1.10.2', 8, 15, 2, 1),
43-
('1.11.0', 8, 16, 3, 1)
43+
('1.11.0', 8, 16, 3, 1),
44+
('1.12.0', 8, 17, 3, 1)
4445
]
4546

4647
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
@@ -347,6 +347,7 @@ def test(opset_versions: List[Tuple[str, int]], ir_version: int) -> None:
347347
test([("", 14)], 7)
348348
test([("", 15)], 8)
349349
test([("", 16)], 8)
350+
test([("", 17)], 8)
350351
# standard opset can be referred to using empty-string or "ai.onnx"
351352
test([("ai.onnx", 9)], 4)
352353
test([("ai.onnx.ml", 2)], 6)

0 commit comments

Comments
 (0)