Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/tvm/runtime/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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<hash> 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"]
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/libinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
4 changes: 2 additions & 2 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
Expand Down
Loading