diff --git a/ChangeLog.rst b/ChangeLog.rst index ae0c794..c1979c5 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,3 +1,10 @@ +Release 0.7.0 - 2020/02/26 +-------------------------- + +- Python 3.7 and 3.8 are supported (#85) +- cuDNN v7.5.1, 7.6.0, 7.6.1, 7.6.2 ,7.6.3, 7.6.4 and 7.6.5 are supported (#80, #81, #82, #83, #84 thank you @gwtnb and @bonprosoft) + + Release 0.6.6 - 2019/03/03 -------------------------- diff --git a/cudnnenv/__init__.py b/cudnnenv/__init__.py index 12e3ccc..64269ce 100644 --- a/cudnnenv/__init__.py +++ b/cudnnenv/__init__.py @@ -10,7 +10,7 @@ import sys import tempfile -__version__ = '0.6.6' +__version__ = '0.7.0' if int(platform.python_version_tuple()[0]) >= 3: diff --git a/setup.py b/setup.py index 42d5a88..3a00d5c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='cudnnenv', - version='0.6.6', + version='0.7.0', description='cudnn environment manager', long_description=open('README.rst').read(), author='Yuya Unno',