diff --git a/conda/dgl/conda_build_config.yaml b/conda/dgl/conda_build_config.yaml index 6e67517ae3c9..e84601e93136 100644 --- a/conda/dgl/conda_build_config.yaml +++ b/conda/dgl/conda_build_config.yaml @@ -1,6 +1,6 @@ python: - - 3.6 - 3.7 - 3.8 - 3.9 - 3.10 + - 3.11 diff --git a/conda/dgl/meta.yaml b/conda/dgl/meta.yaml index 525ab432c27c..72dda12c91ff 100644 --- a/conda/dgl/meta.yaml +++ b/conda/dgl/meta.yaml @@ -1,6 +1,6 @@ package: name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }} - version: 1.1{{ environ.get('DGL_VERSION_SUFFIX', '') }} + version: 1.1.1{{ environ.get('DGL_VERSION_SUFFIX', '') }} source: git_rev: {{ environ.get('DGL_RELEASE_BRANCH', 'master') }} diff --git a/include/dgl/runtime/c_runtime_api.h b/include/dgl/runtime/c_runtime_api.h index 45f79db8e0c3..a61e912d167a 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 "1.1" +#define DGL_VERSION "1.1.1" #ifdef __cplusplus extern "C" { diff --git a/python/dgl/_ffi/libinfo.py b/python/dgl/_ffi/libinfo.py index 918a2088f3a1..caa817bd4e7d 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__ = "1.1" +__version__ = "1.1.1" diff --git a/python/update_version.py b/python/update_version.py index 31a0e944f1f1..fb254d2f4b1d 100644 --- a/python/update_version.py +++ b/python/update_version.py @@ -16,7 +16,7 @@ # (usually "aYYMMDD") # The environment variable DGL_VERSION_SUFFIX is the local version label # suffix for indicating CPU and CUDA versions as in PEP 440 (e.g. "+cu102") -__version__ = "1.1.0" + os.getenv("DGL_PRERELEASE", "") +__version__ = "1.1.1" + os.getenv("DGL_PRERELEASE", "") __version__ += os.getenv("DGL_VERSION_SUFFIX", "") print(__version__)