From f411507d01276aa8420c397fdcf96bdcc8e9cb38 Mon Sep 17 00:00:00 2001 From: Raphael Meudec Date: Fri, 27 Dec 2019 10:40:24 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.0=20=E2=86=92=200.2.0=20(?= =?UTF-8?q?#109)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.py | 2 +- tf_explain/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9e101b3..e2b5136 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.2.0 commit = True tag = False diff --git a/setup.py b/setup.py index 8509270..bd863d8 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="tf-explain", - version="0.1.0", + version="0.2.0", description="Interpretability Callbacks for Tensorflow 2.0", long_description=long_description, long_description_content_type="text/markdown", diff --git a/tf_explain/__init__.py b/tf_explain/__init__.py index d153463..6a665e0 100644 --- a/tf_explain/__init__.py +++ b/tf_explain/__init__.py @@ -5,7 +5,7 @@ callbacks to ease neural network's understanding. """ -__version__ = "0.1.0" +__version__ = "0.2.0" from . import core from . import callbacks