Skip to content

Commit

Permalink
version bump 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
oegedijk committed Mar 12, 2024
1 parent 5813376 commit cfd937e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
# Release Notes


## Version 0.4.6:


### Bug Fixes
- should now work with the format of shap 0.45 that returns a three dimensional np.array instead of a list of 2-dimensional np.arrays for classifiers
-

### Improvements
- Fixed several pandas warning about to be deprecated behaviours
-

### Other Changes
-
-



## Version 0.4.4:
### Breaking Changes
-
Expand Down
6 changes: 3 additions & 3 deletions explainerdashboard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
___version__ = "0.4.5"
___version__ = "0.4.6"

from .explainers import ClassifierExplainer, RegressionExplainer
from .dashboards import ExplainerDashboard, ExplainerHub, InlineExplainer
from .explainers import ClassifierExplainer, RegressionExplainer # noqa
from .dashboards import ExplainerDashboard, ExplainerHub, InlineExplainer # noqa
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="explainerdashboard",
version="0.4.5",
version="0.4.6",
description='Quickly build Explainable AI dashboards that show the inner workings of so-called "blackbox" machine learning models.',
long_description="""
Expand Down

0 comments on commit cfd937e

Please sign in to comment.