This is an automated email from the ASF dual-hosted git repository.

andrewzhaoluo pushed a commit to branch v0.10.0-cleanup
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit d689733d5ae3d4d16455488cbfd9092c6f065029
Author: Andrew Luo <andrew.zhao....@gmail.com>
AuthorDate: Wed Oct 5 10:50:58 2022 -0700

    update version numbers
---
 conda/recipe/meta.yaml              | 2 +-
 include/tvm/runtime/c_runtime_api.h | 2 +-
 python/tvm/_ffi/libinfo.py          | 4 ++--
 version.py                          | 6 +++---
 web/package.json                    | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml
index 22a5124934..084f545bde 100644
--- a/conda/recipe/meta.yaml
+++ b/conda/recipe/meta.yaml
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-{% set version = '0.10.dev0' %}
+{% set version = '0.10.0' %}
 {% set pkg_name = 'tvm' %}
 {% set cuda_tag = cuda_version | replace('.', '') %} # [cuda]
 {% set pkg_name = pkg_name + '-cu' + cuda_tag %} # [cuda]
diff --git a/include/tvm/runtime/c_runtime_api.h 
b/include/tvm/runtime/c_runtime_api.h
index 8acc298e78..96d60df36a 100644
--- a/include/tvm/runtime/c_runtime_api.h
+++ b/include/tvm/runtime/c_runtime_api.h
@@ -66,7 +66,7 @@
 #endif
 
 // TVM version
-#define TVM_VERSION "0.10.dev0"
+#define TVM_VERSION "0.10.0"
 
 // TVM Runtime is DLPack compatible.
 #include <dlpack/dlpack.h>
diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py
index 44ce10bd5a..a02603dafa 100644
--- a/python/tvm/_ffi/libinfo.py
+++ b/python/tvm/_ffi/libinfo.py
@@ -15,8 +15,8 @@
 # specific language governing permissions and limitations
 # under the License.
 """Library information."""
-import sys
 import os
+import sys
 
 
 def split_env_var(env_var, split):
@@ -220,4 +220,4 @@ def find_include_path(name=None, search_path=None, 
optional=False):
 # We use the version of the incoming release for code
 # that is under development.
 # The following line is set by tvm/python/update_version.py
-__version__ = "0.10.dev0"
+__version__ = "0.10.0"
diff --git a/version.py b/version.py
index c9bf76c784..f3ceda11b2 100644
--- a/version.py
+++ b/version.py
@@ -25,10 +25,10 @@ List of affected files:
 - tvm-root/conda/recipe/meta.yaml
 - tvm-root/web/package.json
 """
-import os
-import re
 import argparse
 import logging
+import os
+import re
 import subprocess
 
 # Modify the following value during release
@@ -44,7 +44,7 @@ import subprocess
 # Two tag formats are supported:
 # - vMAJ.MIN.PATCH (e.g. v0.8.0) or
 # - vMAJ.MIN.devN (e.g. v0.8.dev0)
-__version__ = "0.10.dev0"
+__version__ = "0.10.0"
 
 # ---------------------------------------------------
 
diff --git a/web/package.json b/web/package.json
index fb36c0e35d..d6ac455d1d 100644
--- a/web/package.json
+++ b/web/package.json
@@ -2,7 +2,7 @@
   "name": "tvmjs",
   "displayName": "TVM Wasm JS runtime",
   "license": "Apache-2.0",
-  "version": "0.10.0-dev0",
+  "version": "0.10.0",
   "scripts": {
     "prepwasm": "make && python3 tests/python/prepare_test_libs.py",
     "build": "tsc -b && make rmtypedep",
@@ -29,4 +29,4 @@
     "typescript": "^3.8.3",
     "ws": "^7.2.5"
   }
-}
+}
\ No newline at end of file

Reply via email to