This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git
The following commit(s) were added to refs/heads/main by this push:
new 792dc01 [VERSION] formal bump to 0.1.0 (#148)
792dc01 is described below
commit 792dc0149693aa7e4d2de4ca758db4bc5fd26801
Author: Tianqi Chen <[email protected]>
AuthorDate: Thu Oct 16 16:26:41 2025 -0400
[VERSION] formal bump to 0.1.0 (#148)
---
pyproject.toml | 2 +-
python/tvm_ffi/__init__.py | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/pyproject.toml b/pyproject.toml
index fa27da1..df55c9e 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -17,7 +17,7 @@
[project]
name = "apache-tvm-ffi"
-version = "0.1.0b20"
+version = "0.1.0"
description = "tvm ffi"
authors = [{ name = "TVM FFI team" }]
diff --git a/python/tvm_ffi/__init__.py b/python/tvm_ffi/__init__.py
index c97396e..5149ff5 100644
--- a/python/tvm_ffi/__init__.py
+++ b/python/tvm_ffi/__init__.py
@@ -18,7 +18,7 @@
# order matters here so we need to skip isort here
# isort: skip_file
-__version__ = "0.1.0b20"
+__version__ = "0.1.0"
# HACK: try importing torch first, to avoid a potential
# symbol conflict when both torch and tvm_ffi are imported.