This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git
The following commit(s) were added to refs/heads/master by this push:
new a413458 [VERSION] Version for v0.8 cycle (#6615)
a413458 is described below
commit a4134581e18d3a8ad0183beb12ed012e3bcceabf
Author: Tianqi Chen <[email protected]>
AuthorDate: Fri Oct 2 21:52:14 2020 -0400
[VERSION] Version for v0.8 cycle (#6615)
---
conda/tvm-libs/meta.yaml | 2 +-
conda/tvm/meta.yaml | 2 +-
include/tvm/runtime/c_runtime_api.h | 2 +-
python/tvm/_ffi/libinfo.py | 2 +-
version.py | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/conda/tvm-libs/meta.yaml b/conda/tvm-libs/meta.yaml
index 7950793..f151048 100644
--- a/conda/tvm-libs/meta.yaml
+++ b/conda/tvm-libs/meta.yaml
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-{% set version = "0.7.0" %}
+{% set version = "0.8.dev0" %}
package:
name: tvm-libs
diff --git a/conda/tvm/meta.yaml b/conda/tvm/meta.yaml
index 959f3f6..9e8f947 100644
--- a/conda/tvm/meta.yaml
+++ b/conda/tvm/meta.yaml
@@ -15,7 +15,7 @@
# specific language governing permissions and limitations
# under the License.
-{% set version = "0.7.0" %}
+{% set version = "0.8.dev0" %}
package:
name: tvm
diff --git a/include/tvm/runtime/c_runtime_api.h
b/include/tvm/runtime/c_runtime_api.h
index d1a04a9..e25394a 100644
--- a/include/tvm/runtime/c_runtime_api.h
+++ b/include/tvm/runtime/c_runtime_api.h
@@ -61,7 +61,7 @@
#endif
// TVM version
-#define TVM_VERSION "0.7.0"
+#define TVM_VERSION "0.8.dev0"
// TVM Runtime is DLPack compatible.
#include <dlpack/dlpack.h>
diff --git a/python/tvm/_ffi/libinfo.py b/python/tvm/_ffi/libinfo.py
index c885c0b..ae3cba6 100644
--- a/python/tvm/_ffi/libinfo.py
+++ b/python/tvm/_ffi/libinfo.py
@@ -217,4 +217,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.7.0"
+__version__ = "0.8.dev0"
diff --git a/version.py b/version.py
index 8853f4b..6554343 100644
--- a/version.py
+++ b/version.py
@@ -31,7 +31,7 @@ import re
# current version
# We use the version of the incoming release for code
# that is under development
-__version__ = "0.7.0"
+__version__ = "0.8.dev0"
# Implementations
def update(file_name, pattern, repl):