Skip to content

Commit 59bdd3c

Browse files
Release 0.3.0 => 0.3.1 (#178)
* Add citation file in bumpversion config * Bump version: 0.3.0 → 0.3.1
1 parent 18698b0 commit 59bdd3c

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.bumpversion.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
[bumpversion]
2-
current_version = 0.3.0
2+
current_version = 0.3.1
33
commit = True
44
tag = False
55

66
[bumpversion:file:setup.py]
77

8+
[bumpversion:file:CITATION.cff]
9+
810
[bumpversion:file:tf_explain/__init__.py]

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
cff-version: 1.2.0
55
title: tf-explain
66
abstract: Interpretability Methods for tf.keras models with TensorFlow 2.x
7-
version: 0.3.0
7+
version: 0.3.1
88
date-released: 2021-02-04
99
message: "If you use tf-explain in your research, please cite it using these metadata."
1010
type: software

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name="tf-explain",
10-
version="0.3.0",
10+
version="0.3.1",
1111
description="Interpretability Callbacks for Tensorflow 2.0",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",

tf_explain/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
callbacks to ease neural network's understanding.
66
"""
77

8-
__version__ = "0.3.0"
8+
__version__ = "0.3.1"
99

1010
try:
1111
import cv2

0 commit comments

Comments
 (0)