Skip to content

Commit ad8530a

Browse files
authored
[Readme] 0.5.0 release and bump to new prerelease versions (dmlc#2082)
* [Readme] 0.5.0 release and bump to new prerelease versions * bump version
1 parent f13b9b6 commit ad8530a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ DGL is an easy-to-use, high performance and scalable Python package for deep lea
1818
</p>
1919

2020
## <img src="http://data.dgl.ai/asset/image/new.png" width="30">DGL News
21+
**08/21/2020**: The new **v0.5.0 release** includes distributed GNN training, overhauled documentation and user guide, and several more features. We have also submitted some models to the [OGB](https://ogb.stanford.edu) leaderboard. See our [release note](https://github.com/dmlc/dgl/releases/tag/0.5.0) for more details.
22+
2123
**06/11/2020**: Amazon Shanghai AI Lab and AWS Deep Engine Science team working along with academic collaborators from the University of Minnesota, The Ohio State University, and Hunan University have created the **[Drug Repurposing Knowledge Graph (DRKG)](https://github.com/gnn4dr/DRKG)** and a set of machine learning tools, [DGL-KE](https://github.com/awslabs/dgl-ke), that can be used to prioritize drugs for repurposing studies.
2224
DRKG is a comprehensive biological knowledge graph that relates human genes, compounds, biological processes, drug side effects, diseases and symptoms. DRKG includes, curates, and normalizes information from six publicly available databases and data that were collected from recent publications related to Covid-19. It has 97,238 entities belonging to 13 types of entities, and 5,874,261 triplets belonging to 107 types of relations.
2325
More about the dataset is in this [blogpost](https://www.dgl.ai/news/2020/06/09/covid.html).
2426

25-
**03/31/2020**: The new **v0.4.3 release** includes official TensorFlow support, with 15 popular GNN modules. DGL-KE and DGL-LifeSci, two packages for knowledge graph embedding and chemi- and bio-informatics respectively, have graduated as standalone packages and can be installed by pip and conda. The new release provides full support of graph sampling on heterogeneous graphs, with multi-GPU acceleration. See our [new feature walkthrough](https://www.dgl.ai/release/2020/04/01/release.html) and [release note](https://github.com/dmlc/dgl/releases/tag/0.4.3).
26-
2727
## Using DGL
2828

2929
**A data scientist** may want to apply a pre-trained model to your data right away. For this you can use DGL's [Application packages, formally *Model Zoo*](https://github.com/dmlc/dgl/tree/master/apps). Application packages are developed for domain applications, as is the case for [DGL-LifeScience](https://github.com/awslabs/dgl-lifesci). We will soon add model zoo for knowledge graph embedding learning and recommender systems. Here's how you will use a pretrained model:

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.6"
44

55
source:
66
git_rev: 0.4.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.6"
3737

3838

3939
// DGL Runtime is DLPack compatible.

python/dgl/_ffi/libinfo.py

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

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.6" + os.getenv('DGL_PRERELEASE', '')
1515
print(__version__)
1616

1717
# Implementations

0 commit comments

Comments
 (0)