diff --git a/conda/dgl/meta.yaml b/conda/dgl/meta.yaml index d38974af397b..44675dc668be 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.10" + version: "1.0" 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 da4396373545..b658cf27e979 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.10" +#define DGL_VERSION "1.0" #ifdef __cplusplus extern "C" { diff --git a/python/dgl/_ffi/libinfo.py b/python/dgl/_ffi/libinfo.py index 7b7f5728f9df..5d5cbc65f6ea 100644 --- a/python/dgl/_ffi/libinfo.py +++ b/python/dgl/_ffi/libinfo.py @@ -105,4 +105,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.10" +__version__ = "1.0" diff --git a/python/update_version.py b/python/update_version.py index 4b8af1f9b995..abad8d394d14 100644 --- a/python/update_version.py +++ b/python/update_version.py @@ -12,7 +12,7 @@ # current version # We use the version of the incoming release for code # that is under development -__version__ = "0.10" + os.getenv("DGL_PRERELEASE", "") +__version__ = "1.0" + os.getenv("DGL_PRERELEASE", "") print(__version__) # Implementations