Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
BarclayII committed Aug 21, 2020
1 parent ad8530a commit 1820418
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions conda/dgl/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
version: "0.6"
version: "0.5.0"

source:
git_rev: 0.4.x
git_rev: 0.5.x
git_url: https://github.com/dmlc/dgl.git

requirements:
Expand Down
2 changes: 1 addition & 1 deletion include/dgl/runtime/c_runtime_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#endif

// DGL version
#define DGL_VERSION "0.6"
#define DGL_VERSION "0.5.0"


// DGL Runtime is DLPack compatible.
Expand Down
2 changes: 1 addition & 1 deletion python/dgl/_ffi/libinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
# We use the version of the incoming release for code
# that is under development.
# The following line is set by dgl/python/update_version.py
__version__ = "0.6"
__version__ = "0.5.0"
2 changes: 1 addition & 1 deletion python/update_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# current version
# We use the version of the incoming release for code
# that is under development
__version__ = "0.6" + os.getenv('DGL_PRERELEASE', '')
__version__ = "0.5.0"
print(__version__)

# Implementations
Expand Down

0 comments on commit 1820418

Please sign in to comment.