Skip to content

Commit cd4f0a2

Browse files
authored
[Release] update version (#440)
* update version * update news
1 parent 8651be5 commit cd4f0a2

File tree

5 files changed

+47
-4
lines changed

5 files changed

+47
-4
lines changed

NEWS.md

+43
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,49 @@ DGL release and change logs
33

44
Refer to the roadmap issue for the on-going versions and features.
55

6+
0.2
7+
---
8+
Major release that includes many features, bugfix and performance improvement.
9+
Speed of GCN model on Pubmed dataset has been improved by **4.19x**! Speed of
10+
RGCN model on Mutag dataset has been improved by **7.35x**! Important new
11+
feature: **graph sampling APIs**.
12+
13+
Update details:
14+
15+
# Model examples
16+
- [x] TreeLSTM w/ MXNet (PR #279 by @szha )
17+
- [x] GraphSage (@ZiyueHuang )
18+
- [x] Improve GAT model speed (PR #348 by @jermainewang )
19+
20+
# Core system improvement
21+
- [x] Immutable CSR graph structure (PR #342 by @zheng-da )
22+
- [x] Finish remaining functionality (Issue #369, PR #404 by @yzh119)
23+
- [x] Nodeflow data structure (PR #361 by @zheng-da )
24+
- [x] Neighbor sampler (PR #322 )
25+
- [x] Layer-wise sampler (PR #362 by @GaiYu0 )
26+
- [x] Multi-GPU support by data parallelism (PR #356 #338 by @ylfdq1118 )
27+
- [x] More dataset:
28+
- [x] Reddit dataset loader (PR #372 by @ZiyueHuang )
29+
- [x] PPI dataset loader (PR #395 by @sufeidechabei )
30+
- [x] Mini graph classification dataset (PR #364 by @mufeili )
31+
- [x] NN modules (PR #406 by @jermainewang @mufeili)
32+
- [x] GraphConv layer
33+
- [x] Edge softmax layer
34+
- [x] Edge group apply API (PR #358 by @VoVAllen )
35+
- [x] Reversed graph and transform.py module (PR #331 by @mufeili )
36+
- [x] Max readout (PR #341 by @mufeili )
37+
- [x] Random walk APIs (PR #392 by @BarclayII )
38+
39+
# Tutorial/Blog
40+
- [x] Batched graph classification in DGL (PR #360 by @mufeili )
41+
- [x] Understanding GAT (@sufeidechabei )
42+
43+
# Project improvement
44+
- [x] Python lint check (PR #330 by @jermainewang )
45+
- [x] Win CI (PR #324 by @BarclayII )
46+
- [x] Auto doc build (by @VoVAllen )
47+
- [x] Unify tests for different backends (PR #333 by @BarclayII )
48+
649
0.1.3
750
-----
851
Bug fix

conda/dgl/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: dgl
3-
version: "0.1.3"
3+
version: "0.2"
44

55
source:
66
git_rev: 0.1.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.1.3"
36+
#define DGL_VERSION "0.2"
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.1.3"
90+
__version__ = "0.2"

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.1.3"
14+
__version__ = "0.2"
1515

1616
# Implementations
1717
def update(file_name, pattern, repl):

0 commit comments

Comments
 (0)