Skip to content

Commit

Permalink
update version number to 1.14.1rc1
Browse files Browse the repository at this point in the history
Signed-off-by: Yuan Yao <[email protected]>
  • Loading branch information
yuanyao-nv committed Aug 7, 2023
1 parent 9ce0e4d commit 232aa95
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION_NUMBER
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.14.0
1.14.1rc1
1 change: 1 addition & 0 deletions docs/Versioning.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ ONNX version|IR version|Opset version ai.onnx|Opset version ai.onnx.ml|Opset ver
1.13.0|8|18|3|1
1.13.1|8|18|3|1
1.14.0|9|19|3|1
1.14.1|9|19|3|1

A programmatically accessible version of the above table is available [here](../onnx/helper.py). Limited version number
information is also maintained in [version.h](../onnx/common/version.h) and [schema.h](../onnx/defs/schema.h).
Expand Down
2 changes: 1 addition & 1 deletion onnx/common/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
namespace ONNX_NAMESPACE {

// Represents the most recent release version. Updated with every release.
constexpr const char* LAST_RELEASE_VERSION = "1.14.0";
constexpr const char* LAST_RELEASE_VERSION = "1.14.1";

} // namespace ONNX_NAMESPACE
1 change: 1 addition & 0 deletions onnx/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
("1.13.0", 8, 18, 3, 1),
("1.13.1", 8, 18, 3, 1),
("1.14.0", 9, 19, 3, 1),
("1.14.1", 9, 19, 3, 1),
]

VersionMapType = Dict[Tuple[str, int], int]
Expand Down

0 comments on commit 232aa95

Please sign in to comment.