From 065360f5c47248d6e7fc73d474adee389350c2aa Mon Sep 17 00:00:00 2001 From: Joel Akeret Date: Fri, 29 Dec 2017 09:40:15 +0100 Subject: [PATCH] bumping up version --- HISTORY.rst | 11 +++++++++-- setup.py | 2 +- tf_unet/__init__.py | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8e52096..4944018 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,14 @@ History ------- -0.1.0 (2016-01-01) +0.1.1 (2017-12-29) ++++++++++++++++++ -* First release on PyPI. \ No newline at end of file +* Support for Tensorflow > 1.0.0 +* Clean package structure +* Integration into mybinder + +0.1.0 (2016-08-18) +++++++++++++++++++ + +* First release to GitHub. \ No newline at end of file diff --git a/setup.py b/setup.py index 8b3a54e..f133f78 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='tf_unet', - version='0.1.0', + version='0.1.1', description='Unet TensorFlow implementation', long_description=readme + '\n\n' + history, author='Joel Akeret', diff --git a/tf_unet/__init__.py b/tf_unet/__init__.py index ef3c91a..84b5898 100644 --- a/tf_unet/__init__.py +++ b/tf_unet/__init__.py @@ -1,3 +1,3 @@ __author__ = 'Joel Akeret' -__version__ = '0.1.0' +__version__ = '0.1.1' __credits__ = 'ETH Zurich, Institute for Astronomy'