From 6df7146028473588c31c4ec6f848405026327761 Mon Sep 17 00:00:00 2001 From: ysh329 Date: Thu, 9 Jan 2025 00:06:27 +0000 Subject: [PATCH 1/2] [release] Update version to 0.19.0 on main branch --- conda/recipe/meta.yaml | 2 +- include/tvm/runtime/c_runtime_api.h | 2 +- python/tvm/_ffi/libinfo.py | 2 +- version.py | 2 +- web/package-lock.json | 4 ++-- web/package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml index e340b25e5ba1..e45307c5fa84 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.19.dev0' %} +{% set version = '0.19.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 438d049ed4a1..ac485431082f 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.19.dev0" +#define TVM_VERSION "0.19.0" // TVM Runtime is DLPack compatible. #include diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py index f29ddaab72a9..cbb834836256 100644 --- a/python/tvm/_ffi/libinfo.py +++ b/python/tvm/_ffi/libinfo.py @@ -247,4 +247,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.19.dev0" +__version__ = "0.19.0" diff --git a/version.py b/version.py index c8151769ba68..aedcca0121c2 100644 --- a/version.py +++ b/version.py @@ -44,7 +44,7 @@ # Two tag formats are supported: # - vMAJ.MIN.PATCH (e.g. v0.8.0) or # - vMAJ.MIN.devN (e.g. v0.8.dev0) -__version__ = "0.19.dev0" +__version__ = "0.19.0" # --------------------------------------------------- diff --git a/web/package-lock.json b/web/package-lock.json index ddc14c7f134d..8779f1280b7c 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "tvmjs", - "version": "0.19.0-dev0", + "version": "0.19.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tvmjs", - "version": "0.19.0-dev0", + "version": "0.19.0", "license": "Apache-2.0", "devDependencies": { "@rollup/plugin-commonjs": "^20.0.0", diff --git a/web/package.json b/web/package.json index a89b078cd776..ea29bdc07ef4 100644 --- a/web/package.json +++ b/web/package.json @@ -3,7 +3,7 @@ "description": "TVM WASM/WebGPU runtime for JS/TS", "license": "Apache-2.0", "homepage": "https://github.com/apache/tvm/tree/main/web", - "version": "0.19.0-dev0", + "version": "0.19.0", "files": [ "lib" ], From 057ab109b4e1e052249212df348897fb3f0b4ba5 Mon Sep 17 00:00:00 2001 From: ysh329 Date: Thu, 9 Jan 2025 00:25:46 +0000 Subject: [PATCH 2/2] [release] Update version to 0.20.dev0 on main branch --- conda/recipe/meta.yaml | 2 +- include/tvm/runtime/c_runtime_api.h | 2 +- python/tvm/_ffi/libinfo.py | 2 +- version.py | 2 +- web/package-lock.json | 4 ++-- web/package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml index e45307c5fa84..624641829c37 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.19.0' %} +{% set version = '0.20.dev0' %} {% 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 ac485431082f..24ff61811ae1 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.19.0" +#define TVM_VERSION "0.20.dev0" // TVM Runtime is DLPack compatible. #include diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py index cbb834836256..3bbc588f451e 100644 --- a/python/tvm/_ffi/libinfo.py +++ b/python/tvm/_ffi/libinfo.py @@ -247,4 +247,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.19.0" +__version__ = "0.20.dev0" diff --git a/version.py b/version.py index aedcca0121c2..c63958b2da41 100644 --- a/version.py +++ b/version.py @@ -44,7 +44,7 @@ # Two tag formats are supported: # - vMAJ.MIN.PATCH (e.g. v0.8.0) or # - vMAJ.MIN.devN (e.g. v0.8.dev0) -__version__ = "0.19.0" +__version__ = "0.20.dev0" # --------------------------------------------------- diff --git a/web/package-lock.json b/web/package-lock.json index 8779f1280b7c..2814f44edef4 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "tvmjs", - "version": "0.19.0", + "version": "0.20.0-dev0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tvmjs", - "version": "0.19.0", + "version": "0.20.0-dev0", "license": "Apache-2.0", "devDependencies": { "@rollup/plugin-commonjs": "^20.0.0", diff --git a/web/package.json b/web/package.json index ea29bdc07ef4..a5eef57e824e 100644 --- a/web/package.json +++ b/web/package.json @@ -3,7 +3,7 @@ "description": "TVM WASM/WebGPU runtime for JS/TS", "license": "Apache-2.0", "homepage": "https://github.com/apache/tvm/tree/main/web", - "version": "0.19.0", + "version": "0.20.0-dev0", "files": [ "lib" ],