Skip to content

Commit af23c45

Browse files
authored
[Release] update version (#297)
* update version; add news.md; modify contributing.md * change urls to dmlc
1 parent f896e49 commit af23c45

File tree

18 files changed

+88
-42
lines changed

18 files changed

+88
-42
lines changed

CONTRIBUTING.md

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,27 @@
11
## Contributing to DGL
22

3-
If you are interested in contributing to DGL, your contributions will fall
4-
into two categories:
5-
1. You want to propose a new Feature and implement it
6-
- post about your intended feature, and we shall discuss the design and
7-
implementation. Once we agree that the plan looks good, go ahead and implement it.
8-
2. You want to implement a feature or bug-fix for an outstanding issue
9-
- Look at the outstanding issues
10-
- Especially look at the Low Priority and Medium Priority issues
11-
- Pick an issue and comment on the task that you want to work on this feature
12-
- If you need more context on a particular issue, please ask and we shall provide.
13-
14-
Once you finish implementing a feature or bugfix, please send a Pull Request.
3+
Contribution is always welcomed. A good starting place is the roadmap issue, where
4+
you can find our current milestones. All contributions must go through pull requests
5+
and be reviewed by the committors.
156

7+
For document improvement, simply PR the change and prepend the title with `[Doc]`.
8+
9+
For new features, we suggest first create an issue using the feature request template.
10+
Follow the template to describe the features you want to implement and your plans.
11+
We also suggest pick the features from the roadmap issue because they are more likely
12+
to be incoporated in the next release.
13+
14+
For bug fix, we suggest first create an issue using the bug report template if the
15+
bug has not been reported yet. Please reply the issue that you'd like to help. Once
16+
the task is assigned, make the change in your fork and PR the codes. Remember to
17+
also refer to the issue where the bug is reported.
18+
19+
Once your PR is merged, congratulation, you are now an contributor to the DGL project.
20+
We will put your name in the list below and also on our [website](https://www.dgl.ai/ack).
21+
22+
Contributors
23+
------------
24+
[Yizhi Liu](https://github.com/yzhliu)
25+
[Yifei Ma](https://github.com/yifeim)
26+
Hao Jin
27+
[Sheng Zha](https://github.com/szha)

NEWS.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
DGL release and change logs
2+
==========
3+
4+
Refer to the roadmap issue for the on-going versions and features.
5+
6+
0.1.3
7+
-----
8+
Bug fix
9+
* Compatible with Pytorch v1.0
10+
* Bug fix in networkx graph conversion.
11+
12+
0.1.2
13+
-----
14+
First open release.
15+
* Basic graph APIs.
16+
* Basic message passing APIs.
17+
* Pytorch backend.
18+
* MXNet backend.
19+
* Optimization using SPMV.
20+
* Model examples w/ Pytorch:
21+
- GCN
22+
- GAT
23+
- JTNN
24+
- DGMG
25+
- Capsule
26+
- LGNN
27+
- RGCN
28+
- Transformer
29+
- TreeLSTM
30+
* Model examples w/ MXNet:
31+
- GCN
32+
- GAT
33+
- RGCN
34+
- SSE

conda/dgl/meta.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
package:
22
name: dgl
3-
version: "0.1.2"
3+
version: "0.1.3"
44

55
source:
6-
git_rev: 0.1.2
7-
git_url: https://github.com/jermainewang/dgl.git
6+
git_rev: 0.1.x
7+
git_url: https://github.com/dmlc/dgl.git
88

99
requirements:
1010
build:
@@ -21,5 +21,5 @@ requirements:
2121
- networkx
2222

2323
about:
24-
home: https://github.com/jermainewang/dgl.git
24+
home: https://github.com/dmlc/dgl.git
2525
license_file: ../../LICENSE

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 "0.1.2"
36+
#define DGL_VERSION "0.1.3"
3737

3838

3939
// DGL Runtime is DLPack compatible.

python/dgl/_ffi/libinfo.py

Lines changed: 1 addition & 1 deletion
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.2"
90+
__version__ = "0.1.3"

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def get_lib_path():
7272
'scipy>=1.1.0',
7373
'networkx>=2.1',
7474
],
75-
url='https://github.com/jermainewang/dgl',
75+
url='https://github.com/dmlc/dgl',
7676
distclass=BinaryDistribution,
7777
classifiers=[
7878
'Development Status :: 3 - Alpha',

python/update_version.py

Lines changed: 1 addition & 1 deletion
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.2"
14+
__version__ = "0.1.3"
1515

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

tutorials/models/1_gnn/4_rgcn.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#
5757
# This tutorial will focus on the first task to show how to generate entity
5858
# representation. `Complete
59-
# code <https://github.com/jermainewang/dgl/tree/rgcn/examples/pytorch/rgcn>`_
59+
# code <https://github.com/dmlc/dgl/tree/rgcn/examples/pytorch/rgcn>`_
6060
# for both tasks can be found in DGL's github repository.
6161
#
6262
# Key ideas of R-GCN
@@ -356,4 +356,4 @@ def forward(self, g):
356356
# The implementation is similar to the above but with an extra DistMult layer
357357
# stacked on top of the R-GCN layers. You may find the complete
358358
# implementation of link prediction with R-GCN in our `example
359-
# code <https://github.com/jermainewang/dgl/blob/master/examples/pytorch/rgcn/link_predict.py>`_.
359+
# code <https://github.com/dmlc/dgl/blob/master/examples/pytorch/rgcn/link_predict.py>`_.

tutorials/models/1_gnn/6_line_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ def collate_fn(batch):
610610

611611
######################################################################################
612612
# You can check out the complete code
613-
# `here <https://github.com/jermainewang/dgl/tree/master/examples/pytorch/line_graph>`_.
613+
# `here <https://github.com/dmlc/dgl/tree/master/examples/pytorch/line_graph>`_.
614614
#
615615
# What's the business with :math:`\{Pm, Pd\}`?
616616
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

tutorials/models/1_gnn/8_sse_mx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ def test(g, test_nodes, steady_state_operator, predictor):
540540
# scaled SSE to a graph with 50 million nodes and 150 million edges in a
541541
# single P3.8x large instance and one epoch only takes about 160 seconds.
542542
#
543-
# See full examples `here <https://github.com/jermainewang/dgl/tree/master/examples/mxnet/sse>`_.
543+
# See full examples `here <https://github.com/dmlc/dgl/tree/master/examples/mxnet/sse>`_.
544544
#
545545
# .. |image0| image:: https://s3.us-east-2.amazonaws.com/dgl.ai/tutorial/img/floodfill-paths.gif
546546
# .. |image1| image:: https://s3.us-east-2.amazonaws.com/dgl.ai/tutorial/img/neighbor-sampling.gif

0 commit comments

Comments
 (0)