From bdb47e948f84b1d21b606174fc27fa839c75ff43 Mon Sep 17 00:00:00 2001 From: Yuya Unno Date: Wed, 21 Feb 2018 18:51:05 +0900 Subject: [PATCH] Update version --- ChangeLog.rst | 14 ++++++++++---- cudnnenv/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/ChangeLog.rst b/ChangeLog.rst index e142cad..c1a62cc 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,11 +1,17 @@ -Rlease 0.6.1 - 2017/10/29 -------------------------- +Release 0.6.2 - 2018/02/21 +-------------------------- + +- cuDNN v7.0.5 and v7.0.4 are supported (#58 thank you @kmaehashi, #61) + + +Release 0.6.1 - 2017/10/29 +-------------------------- - cuDNN v7.0.3 and v7.0.2 are supported (#56) -Rlease 0.6.0 - 2017/8/4 ------------------------ +Release 0.6.0 - 2017/8/4 +------------------------ - cuDNN v7 is supported (#50) - sha256sum format problem is solved (#48 thank you @rooa, #53) diff --git a/cudnnenv/__init__.py b/cudnnenv/__init__.py index eb0f666..f111dff 100644 --- a/cudnnenv/__init__.py +++ b/cudnnenv/__init__.py @@ -10,7 +10,7 @@ import sys import tempfile -__version__ = '0.6.1' +__version__ = '0.6.2' if int(platform.python_version_tuple()[0]) >= 3: diff --git a/setup.py b/setup.py index 528979e..03c945f 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='cudnnenv', - version='0.6.1', + version='0.6.2', description='cudnn environment manager', long_description=open('README.rst').read(), author='Yuya Unno',