You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by le...@apache.org on 2022/07/27 12:04:39 UTC

[tvm] branch main updated: Update to 0.10.0 (#12190)

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

leandron pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 97269fa479 Update to 0.10.0 (#12190)
97269fa479 is described below

commit 97269fa479f4844a20ca680e54d0caaf3401a855
Author: driazati <94...@users.noreply.github.com>
AuthorDate: Wed Jul 27 05:04:30 2022 -0700

    Update to 0.10.0 (#12190)
    
    This updates the version numbers after the v0.9.0 release and adds a version selector option for the v0.9.0 docs.
    
    Co-authored-by: driazati <dr...@users.noreply.github.com>
---
 NOTICE                              | 2 +-
 conda/recipe/meta.yaml              | 2 +-
 docs/conf.py                        | 2 +-
 include/tvm/runtime/c_runtime_api.h | 2 +-
 python/tvm/_ffi/libinfo.py          | 2 +-
 version.py                          | 2 +-
 web/package.json                    | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/NOTICE b/NOTICE
index a4b747830d..4dd1cbf29a 100644
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
 Apache TVM
-Copyright 2019-2021 The Apache Software Foundation
+Copyright 2019-2022 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).
diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml
index a535fcde4e..ccdacdcc45 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.9.dev0' %}
+{% set version = '0.10.dev0' %}
 {% set pkg_name = 'tvm' %}
 {% set cuda_tag = cuda_version | replace('.', '') %} # [cuda]
 {% set pkg_name = pkg_name + '-cu' + cuda_tag %} # [cuda]
diff --git a/docs/conf.py b/docs/conf.py
index 4faa20ddc0..eb292e5640 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -425,7 +425,7 @@ html_context = {
     "header_dropdown": header_dropdown,
     "header_logo": header_logo,
     "header_logo_link": header_logo_link,
-    "version_prefixes": ["main", "v0.8.0/"],
+    "version_prefixes": ["main", "v0.8.0/", "v0.9.0/"],
 }
 
 # add additional overrides
diff --git a/include/tvm/runtime/c_runtime_api.h b/include/tvm/runtime/c_runtime_api.h
index 085935101c..8acc298e78 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.9.dev0"
+#define TVM_VERSION "0.10.dev0"
 
 // TVM Runtime is DLPack compatible.
 #include <dlpack/dlpack.h>
diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py
index 8df236f27c..44ce10bd5a 100644
--- a/python/tvm/_ffi/libinfo.py
+++ b/python/tvm/_ffi/libinfo.py
@@ -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.9.dev0"
+__version__ = "0.10.dev0"
diff --git a/version.py b/version.py
index 4c65b9598c..b739d82b73 100644
--- a/version.py
+++ b/version.py
@@ -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.9.dev0"
+__version__ = "0.10.dev0"
 
 # ---------------------------------------------------
 
diff --git a/web/package.json b/web/package.json
index a6bfca352a..fb36c0e35d 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.9.0-dev0",
+  "version": "0.10.0-dev0",
   "scripts": {
     "prepwasm": "make && python3 tests/python/prepare_test_libs.py",
     "build": "tsc -b && make rmtypedep",