diff --git a/keras/__init__.py b/keras/__init__.py index 1c8e66f99dd6ed9292a553e91994ee39845a9198..97aa7c91c6d0bdc69487b60ed8248ca9b70c4dee 100644 --- a/keras/__init__.py +++ b/keras/__init__.py @@ -20,4 +20,4 @@ from . import regularizers # Importable from root because it's technically not a layer from .layers import Input -__version__ = '2.0.5' +__version__ = '2.0.6' diff --git a/setup.py b/setup.py index c3da9ed22393c45667955ac9cfcf3b0f33117e9f..7b96bc2e262406ad0c3378b76ba7850cbfc8fcd4 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ from setuptools import find_packages setup(name='Keras', - version='2.0.5', + version='2.0.6', description='Deep Learning for Python', author='Francois Chollet', author_email='francois.chollet@gmail.com', url='https://github.com/fchollet/keras', - download_url='https://github.com/fchollet/keras/tarball/2.0.5', + download_url='https://github.com/fchollet/keras/tarball/2.0.6', license='MIT', install_requires=['theano', 'pyyaml', 'six'], extras_require={