From 7d03b0aac21bf43eeb1919076993f00ba79fdfa8 Mon Sep 17 00:00:00 2001 From: Yuya Unno Date: Fri, 4 Aug 2017 21:45:38 +0900 Subject: [PATCH] Update version --- ChangeLog.rst | 8 ++++++++ cudnnenv/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) 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',