Skip to content

Commit

Permalink
[1.10.2] Bump version 1.10.2 globally (#3795) (#3809)
Browse files Browse the repository at this point in the history
Signed-off-by: Chun-Wei Chen <jacky82226@gmail.com>
  • Loading branch information
jcwchen committed Oct 28, 2021
1 parent f9a2110 commit ee4d1e1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion VERSION_NUMBER
@@ -1 +1 @@
1.10.1
1.10.2
1 change: 1 addition & 0 deletions docs/Versioning.md
Expand Up @@ -177,6 +177,7 @@ ONNX version|IR version|Opset version ai.onnx|Opset version ai.onnx.ml|Opset ver
1.9.0|7|14|2|1
1.10.0|8|15|2|1
1.10.1|8|15|2|1
1.10.2|8|15|2|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
Expand Up @@ -8,6 +8,6 @@
namespace ONNX_NAMESPACE {

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

}
3 changes: 2 additions & 1 deletion onnx/helper.py
Expand Up @@ -41,7 +41,8 @@
('1.8.1', 7, 13, 2, 1),
('1.9.0', 7, 14, 2, 1),
('1.10.0', 8, 15, 2, 1),
('1.10.1', 8, 15, 2, 1)
('1.10.1', 8, 15, 2, 1),
('1.10.2', 8, 15, 2, 1)
] # type: VersionTableType

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

0 comments on commit ee4d1e1

Please sign in to comment.