[release] Update version to 0.18.0 on main branch
diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml
index d447746..c5e3840 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.18.dev0' %}
+{% set version = '0.18.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 d26c95e..8071020 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.18.dev0"
+#define TVM_VERSION "0.18.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 2ec4ba8..6e39d5b 100644
--- a/python/tvm/_ffi/libinfo.py
+++ b/python/tvm/_ffi/libinfo.py
@@ -247,4 +247,4 @@
# 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.18.dev0"
+__version__ = "0.18.0"
diff --git a/version.py b/version.py
index a827571..cea1ba3 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.18.dev0"
+__version__ = "0.18.0"
# ---------------------------------------------------
diff --git a/web/package-lock.json b/web/package-lock.json
index 751aaf2..6c7e024 100644
--- a/web/package-lock.json
+++ b/web/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "tvmjs",
- "version": "0.18.0-dev2",
+ "version": "0.18.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "tvmjs",
- "version": "0.18.0-dev2",
+ "version": "0.18.0",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
diff --git a/web/package.json b/web/package.json
index a63997b..c8d33be 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.18.0-dev2",
+ "version": "0.18.0",
"files": [
"lib"
],