Skip to content

Commit 7cf75dd

Browse files
peizhou001Ubuntu
andauthored
change version to 1.1.3 (#6643)
Co-authored-by: Ubuntu <[email protected]>
1 parent e75910b commit 7cf75dd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

conda/dgl/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
3-
version: 1.1.2post1{{ environ.get('DGL_VERSION_SUFFIX', '') }}
3+
version: 1.1.3{{ environ.get('DGL_VERSION_SUFFIX', '') }}
44

55
source:
66
git_rev: {{ environ.get('DGL_RELEASE_BRANCH', 'master') }}

include/dgl/runtime/c_runtime_api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#endif
3434

3535
// DGL version
36-
#define DGL_VERSION "1.1.2post1"
36+
#define DGL_VERSION "1.1.3"
3737

3838
#ifdef __cplusplus
3939
extern "C" {

python/dgl/_ffi/libinfo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
105105
# We use the version of the incoming release for code
106106
# that is under development.
107107
# The following line is set by dgl/python/update_version.py
108-
__version__ = "1.1.2post1"
108+
__version__ = "1.1.3"

python/update_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# (usually "aYYMMDD")
1717
# The environment variable DGL_VERSION_SUFFIX is the local version label
1818
# suffix for indicating CPU and CUDA versions as in PEP 440 (e.g. "+cu102")
19-
__version__ = "1.1.2post1" + os.getenv("DGL_PRERELEASE", "")
19+
__version__ = "1.1.3" + os.getenv("DGL_PRERELEASE", "")
2020
__version__ += os.getenv("DGL_VERSION_SUFFIX", "")
2121
print(__version__)
2222

0 commit comments

Comments
 (0)