diff --git a/include/tvm/runtime/base.h b/include/tvm/runtime/base.h index 977ed6715280..1e5d9ecc9fba 100644 --- a/include/tvm/runtime/base.h +++ b/include/tvm/runtime/base.h @@ -32,7 +32,7 @@ // passes the setuptools_scm-resolved version through CMake). The literal below is the // fallback for a bare build with no override. #ifndef TVM_VERSION -#define TVM_VERSION "0.25.dev0" +#define TVM_VERSION "0.26.dev0" #endif // TVM ships two shared libraries: libtvm_compiler and libtvm_runtime. diff --git a/pyproject.toml b/pyproject.toml index 2c38e0b21b7f..db55d55daabd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -153,13 +153,13 @@ BUILD_TESTING = "OFF" [tool.setuptools_scm] # Version comes from the most recent Git tag (vMAJOR.MINOR.devN or vMAJOR.MINOR.PATCH). # guess-next-dev reproduces the previous version.py behaviour for vMAJOR.MINOR.devN -# tags (e.g. v0.25.dev0 + N commits -> 0.25.devN). local_scheme = "no-local-version" +# tags (e.g. v0.26.dev0 + N commits -> 0.26.devN). local_scheme = "no-local-version" # drops the +g local segment: PyPI rejects local versions on upload, and # this matches the public version the old version.py stamped. version_file = "python/tvm/_version.py" version_scheme = "guess-next-dev" local_scheme = "no-local-version" -fallback_version = "0.25.dev0" +fallback_version = "0.26.dev0" [tool.pytest.ini_options] testpaths = ["tests"] diff --git a/python/tvm/libinfo.py b/python/tvm/libinfo.py index d56021df4e16..ee0528e2004a 100644 --- a/python/tvm/libinfo.py +++ b/python/tvm/libinfo.py @@ -96,4 +96,4 @@ def find_include_path() -> str: try: from ._version import version as __version__ except ImportError: # pragma: no cover - source tree without a build - __version__ = "0.25.dev0" + __version__ = "0.26.dev0" diff --git a/web/package-lock.json b/web/package-lock.json index 109b389fc661..77b1401d9500 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "tvmjs", - "version": "0.25.0-dev1", + "version": "0.26.0-dev0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tvmjs", - "version": "0.25.0-dev1", + "version": "0.26.0-dev0", "license": "Apache-2.0", "dependencies": { "audit": "^0.0.6", diff --git a/web/package.json b/web/package.json index 696287cc37f6..de9e28aafa91 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.25.0-dev1", + "version": "0.26.0-dev0", "files": [ "lib" ],