Skip to content

Commit

Permalink
version bump for 1.10.2
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 22, 2021
1 parent 87435aa commit 0c8664f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .azure-pipelines/Linux-CI.yml
Expand Up @@ -4,7 +4,7 @@ trigger:
jobs:
- job: 'Test'
pool:
vmImage: 'Ubuntu-16.04'
vmImage: 'Ubuntu-18.04'
strategy:
matrix:
py36:
Expand Down
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 0c8664f

Please sign in to comment.