From 55f6712e38df38d1ba9bbbcd4d71abfe7d7044a2 Mon Sep 17 00:00:00 2001 From: ysh329 Date: Sun, 1 Oct 2023 09:36:28 +0800 Subject: [PATCH 1/2] [release] Update version to 0.14.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.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml index 077f542a4f46..26c80f1b47d4 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.14.dev0' %} +{% set version = '0.14.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 43cf49948108..40fbdaf2dde0 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.14.dev0" +#define TVM_VERSION "0.14.0" // TVM Runtime is DLPack compatible. #include diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py index 3ec78fe278ae..3ac2e037d6ab 100644 --- a/python/tvm/_ffi/libinfo.py +++ b/python/tvm/_ffi/libinfo.py @@ -227,4 +227,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.14.dev0" +__version__ = "0.14.0" diff --git a/version.py b/version.py index 3f18a7dd3395..eab814e2a66a 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.14.dev0" +__version__ = "0.14.0" # --------------------------------------------------- diff --git a/web/package.json b/web/package.json index 4378517dd5c8..525126c43e60 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.14.0-dev0", + "version": "0.14.0", "scripts": { "prepwasm": "make && python3 tests/python/prepare_test_libs.py", "build": "tsc -b && make rmtypedep", From 701650b465c3ae24cdd55ccd2c0764226ac819e9 Mon Sep 17 00:00:00 2001 From: ysh329 Date: Mon, 9 Oct 2023 14:57:18 +0800 Subject: [PATCH 2/2] [Release] Update version to 0.15.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.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml index 26c80f1b47d4..38cd327f13f2 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.14.0' %} +{% set version = '0.15.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 40fbdaf2dde0..d678003ee8c3 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.14.0" +#define TVM_VERSION "0.15.dev0" // TVM Runtime is DLPack compatible. #include diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py index 3ac2e037d6ab..4cf3d3c22a76 100644 --- a/python/tvm/_ffi/libinfo.py +++ b/python/tvm/_ffi/libinfo.py @@ -227,4 +227,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.14.0" +__version__ = "0.15.dev0" diff --git a/version.py b/version.py index eab814e2a66a..ee4b3507c307 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.14.0" +__version__ = "0.15.dev0" # --------------------------------------------------- diff --git a/web/package.json b/web/package.json index 525126c43e60..ac80622fd7e9 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.14.0", + "version": "0.15.0-dev0", "scripts": { "prepwasm": "make && python3 tests/python/prepare_test_libs.py", "build": "tsc -b && make rmtypedep",