From 1f63dcb7fcc3a8bf5c3c8e326867ecd6f5c43f35 Mon Sep 17 00:00:00 2001 From: Rajeev Rao Date: Mon, 2 Aug 2021 09:53:07 -0700 Subject: [PATCH] include requirements.txt in source distribution (#3623) * include requirements.txt in source distribution Signed-off-by: Chun-Wei Chen * Bump bugfix onnx release version to v1.10.1 Signed-off-by: Rajeev Rao Co-authored-by: Chun-Wei Chen --- MANIFEST.in | 1 + VERSION_NUMBER | 2 +- docs/Versioning.md | 1 + onnx/common/version.h | 2 +- onnx/helper.py | 3 ++- 5 files changed, 6 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index e3c0e1e1674..ee04daa2cc9 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,3 +7,4 @@ recursive-include cmake * recursive-include tools * include VERSION_NUMBER include CMakeLists.txt +include requirements.txt diff --git a/VERSION_NUMBER b/VERSION_NUMBER index 81c871de46b..4dae2985b58 100644 --- a/VERSION_NUMBER +++ b/VERSION_NUMBER @@ -1 +1 @@ -1.10.0 +1.10.1 diff --git a/docs/Versioning.md b/docs/Versioning.md index dc87a3ecbfb..deb24d193cd 100644 --- a/docs/Versioning.md +++ b/docs/Versioning.md @@ -176,6 +176,7 @@ ONNX version|IR version|Opset version ai.onnx|Opset version ai.onnx.ml|Opset ver 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 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 6a1690114d2..22009645c94 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.0"; +constexpr const char* LAST_RELEASE_VERSION = "1.10.1"; } diff --git a/onnx/helper.py b/onnx/helper.py index 6652a8bf18c..76864ffb8ce 100644 --- a/onnx/helper.py +++ b/onnx/helper.py @@ -40,7 +40,8 @@ ('1.8.0', 7, 13, 2, 1), ('1.8.1', 7, 13, 2, 1), ('1.9.0', 7, 14, 2, 1), - ('1.10.0', 8, 15, 2, 1) + ('1.10.0', 8, 15, 2, 1), + ('1.10.1', 8, 15, 2, 1) ] # type: VersionTableType VersionMapType = Dict[Tuple[Text, int], int]