From faf0fd0ac8e51798f8daf84b4747fba055ae3884 Mon Sep 17 00:00:00 2001 From: Quan Gan Date: Wed, 25 May 2022 07:04:08 +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 74b193cce783..bf5248808cec 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.9" + version: "0.8.2" 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 c6584f2df753..78c50b0d7103 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.9" +#define DGL_VERSION "0.8.2" // DGL Runtime is DLPack compatible. diff --git a/python/dgl/_ffi/libinfo.py b/python/dgl/_ffi/libinfo.py index 09018604d3e7..52190cc6c75f 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.9" +__version__ = "0.8.2" diff --git a/python/update_version.py b/python/update_version.py index 78de997a7abd..cfacccfb3480 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.9" + os.getenv('DGL_PRERELEASE', '') +__version__ = "0.8.2" print(__version__) # Implementations