From 2b8c834b08935c5b7976a20eeb1d397662377490 Mon Sep 17 00:00:00 2001 From: Quan Gan Date: Thu, 31 Mar 2022 13:32:40 +0000 Subject: [PATCH] update version --- conda/dgl/meta.yaml | 2 +- include/dgl/runtime/c_runtime_api.h | 2 +- python/dgl/_ffi/libinfo.py | 2 +- python/update_version.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/conda/dgl/meta.yaml b/conda/dgl/meta.yaml index e3d1f6b6b687..a1f99ede4b90 100644 --- a/conda/dgl/meta.yaml +++ b/conda/dgl/meta.yaml @@ -1,6 +1,6 @@ package: name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }} - version: "0.8.0post1" + version: "0.8.0post2" source: git_rev: 0.8.x diff --git a/include/dgl/runtime/c_runtime_api.h b/include/dgl/runtime/c_runtime_api.h index ff07d68da5fc..6a015095a48a 100644 --- a/include/dgl/runtime/c_runtime_api.h +++ b/include/dgl/runtime/c_runtime_api.h @@ -33,7 +33,7 @@ #endif // DGL version -#define DGL_VERSION "0.8.0post1" +#define DGL_VERSION "0.8.0post2" // DGL Runtime is DLPack compatible. diff --git a/python/dgl/_ffi/libinfo.py b/python/dgl/_ffi/libinfo.py index 372dea18835f..dbdd2f573835 100644 --- a/python/dgl/_ffi/libinfo.py +++ b/python/dgl/_ffi/libinfo.py @@ -90,4 +90,4 @@ def find_lib_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 dgl/python/update_version.py -__version__ = "0.8.0post1" +__version__ = "0.8.0post2" diff --git a/python/update_version.py b/python/update_version.py index c886bf517fc4..a1e8555440d6 100644 --- a/python/update_version.py +++ b/python/update_version.py @@ -11,7 +11,7 @@ # current version # We use the version of the incoming release for code # that is under development -__version__ = "0.8.0post1" +__version__ = "0.8.0post2" print(__version__) # Implementations