diff --git a/ChangeLog.rst b/ChangeLog.rst index 5a43686..208fb6f 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,11 @@ +Rlease 0.6.0 - 2017/8/4 +----------------------- + +- cuDNN v7 is supported (#50) +- sha256sum format problem is solved (#48 thank you @rooa, #53) +- Improved code format (#51, #52) + + Release 0.5.0 - 2017/4/30 ------------------------- diff --git a/cudnnenv/__init__.py b/cudnnenv/__init__.py index 65cab3e..2aa6a25 100644 --- a/cudnnenv/__init__.py +++ b/cudnnenv/__init__.py @@ -10,7 +10,7 @@ import sys import tempfile -__version__ = '0.5.0' +__version__ = '0.6.0' if int(platform.python_version_tuple()[0]) >= 3: diff --git a/setup.py b/setup.py index 6ecf84c..be02852 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='cudnnenv', - version='0.5.0', + version='0.6.0', description='cudnn environment manager', long_description=open('README.rst').read(), author='Yuya Unno',