From 75bfbeb14b431889b54318a0148ce828fe047b3a Mon Sep 17 00:00:00 2001 From: Chun-Wei Chen Date: Fri, 22 Oct 2021 20:33:50 -0400 Subject: [PATCH] version bump Signed-off-by: Chun-Wei Chen --- .azure-pipelines/Linux-CI.yml | 2 +- VERSION_NUMBER | 2 +- docs/Versioning.md | 1 + onnx/common/version.h | 2 +- onnx/helper.py | 3 ++- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.azure-pipelines/Linux-CI.yml b/.azure-pipelines/Linux-CI.yml index 306acaf6ea4..ec15a296a8b 100644 --- a/.azure-pipelines/Linux-CI.yml +++ b/.azure-pipelines/Linux-CI.yml @@ -4,7 +4,7 @@ trigger: jobs: - job: 'Test' pool: - vmImage: 'Ubuntu-16.04' + vmImage: 'Ubuntu-18.04' strategy: matrix: py36: diff --git a/VERSION_NUMBER b/VERSION_NUMBER index 4dae2985b58..5ad2491cf88 100644 --- a/VERSION_NUMBER +++ b/VERSION_NUMBER @@ -1 +1 @@ -1.10.1 +1.10.2 diff --git a/docs/Versioning.md b/docs/Versioning.md index deb24d193cd..41065c2f0bb 100644 --- a/docs/Versioning.md +++ b/docs/Versioning.md @@ -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). diff --git a/onnx/common/version.h b/onnx/common/version.h index 22009645c94..093297bf55d 100644 --- a/onnx/common/version.h +++ b/onnx/common/version.h @@ -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"; } diff --git a/onnx/helper.py b/onnx/helper.py index 76864ffb8ce..a70629b62cd 100644 --- a/onnx/helper.py +++ b/onnx/helper.py @@ -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]