Skip to content

Commit d601aaa

Browse files
committed
update version
1 parent bac662c commit d601aaa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

conda/dgl/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
3-
version: "0.4"
3+
version: "0.3.1"
44

55
source:
66
git_rev: 0.3.x

include/dgl/runtime/c_runtime_api.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#endif
3434

3535
// DGL version
36-
#define DGL_VERSION "0.4"
36+
#define DGL_VERSION "0.3.1"
3737

3838

3939
// DGL Runtime is DLPack compatible.

python/dgl/_ffi/libinfo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
8787
# We use the version of the incoming release for code
8888
# that is under development.
8989
# The following line is set by dgl/python/update_version.py
90-
__version__ = "0.4"
90+
__version__ = "0.3.1"

python/update_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# current version
1212
# We use the version of the incoming release for code
1313
# that is under development
14-
__version__ = "0.4" + os.getenv('DGL_PRERELEASE', '')
14+
__version__ = "0.3.1"
1515
print(__version__)
1616

1717
# Implementations

0 commit comments

Comments
 (0)