Skip to content

Commit e171052

Browse files
committed
version bump 0.4.2.1
1 parent c75299d commit e171052

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

RELEASE_NOTES.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Release Notes
22

3+
## Version 0.4.2.1:
4+
5+
6+
### Bug Fixes
7+
- tries to work around wonky index dropdown search bug introduced by latest dash release.
8+
- Dropdown search now works again, but index propagation is still flaky when number of idxs > max_idxs_in_dropdown(1000 by default)
9+
- displays warning to downgrade to dash 2.6.2 when this happens
10+
11+
### Improvements
12+
-
13+
-
14+
15+
### Other Changes
16+
- applied black to the codebase
17+
-
18+
319

420
## Version 0.4.2:
521
### Breaking Changes

explainerdashboard/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
___version__ = "0.4.2"
2+
___version__ = "0.4.2.1"
33

44
from .explainers import ClassifierExplainer, RegressionExplainer
55
from .dashboards import ExplainerDashboard, ExplainerHub, InlineExplainer

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='explainerdashboard',
9-
version='0.4.2',
9+
version='0.4.2.1',
1010
description='Quickly build Explainable AI dashboards that show the inner workings of so-called "blackbox" machine learning models.',
1111
long_description="""
1212

0 commit comments

Comments
 (0)