Skip to content

Commit f107c4d

Browse files
committed
bump version
1 parent 389865f commit f107c4d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

explainerdashboard/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.4.8"
1+
__version__ = "0.5.0"
22

33
from .explainers import ClassifierExplainer, RegressionExplainer # noqa
44
from .dashboards import ExplainerDashboard, ExplainerHub, InlineExplainer # noqa

explainerdashboard/explainers.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151

5252
from .explainer_methods import *
5353
from .explainer_plots import *
54+
from . import __version__
5455

5556

5657
import plotly.io as pio
@@ -388,7 +389,7 @@ def __init__(
388389
if not hasattr(self, "interactions_should_work"):
389390
self.interactions_should_work = True
390391

391-
self.__version__ = "0.4.8"
392+
self.__version__ = __version__
392393

393394
def get_lock(self):
394395
if not hasattr(self, "_lock"):

0 commit comments

Comments
 (0)