You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by sy...@apache.org on 2023/07/10 11:24:29 UTC

[tvm] branch v0.13.0 updated: [Release] Fix version number on branch v0.13.0 (#15273)

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

syfeng pushed a commit to branch v0.13.0
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/v0.13.0 by this push:
     new 97c5de63ba [Release] Fix version number on branch v0.13.0 (#15273)
97c5de63ba is described below

commit 97c5de63ba6baa148fdf0c545ded2cd01d7838d1
Author: ysh329 <ys...@users.noreply.github.com>
AuthorDate: Mon Jul 10 19:24:22 2023 +0800

    [Release] Fix version number on branch v0.13.0 (#15273)
---
 conda/recipe/meta.yaml              | 2 +-
 include/tvm/runtime/c_runtime_api.h | 2 +-
 python/tvm/_ffi/libinfo.py          | 2 +-
 version.py                          | 2 +-
 web/package.json                    | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml
index 4a537bfa49..9caeee9a66 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.13.dev0' %}
+{% set version = '0.13.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 c0c04810e8..5c076f0104 100644
--- a/include/tvm/runtime/c_runtime_api.h
+++ b/include/tvm/runtime/c_runtime_api.h
@@ -73,7 +73,7 @@
 #endif
 
 // TVM version
-#define TVM_VERSION "0.13.dev0"
+#define TVM_VERSION "0.13.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 33047ff84d..556c2b9247 100644
--- a/python/tvm/_ffi/libinfo.py
+++ b/python/tvm/_ffi/libinfo.py
@@ -222,4 +222,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.13.dev0"
+__version__ = "0.13.0"
diff --git a/version.py b/version.py
index ddbb6ae11d..8d0b5e2b0c 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.13.dev0"
+__version__ = "0.13.0"
 
 # ---------------------------------------------------
 
diff --git a/web/package.json b/web/package.json
index 4389d2d707..9de8b877a5 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.13.0-dev0",
+  "version": "0.13.0",
   "scripts": {
     "prepwasm": "make && python3 tests/python/prepare_test_libs.py",
     "build": "tsc -b && make rmtypedep",