Skip to content

Commit ab21bba

Browse files
committed
Update CHANGELOG.md. Bump to v0.1.17
1 parent 0bba011 commit ab21bba

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and the versioning is mostly derived from [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [v0.1.17] - 2019-09-24
8+
### Fixed
9+
- Morris sensitivity now works for both predict and predict_proba on scikit models.
10+
- Removal of debug print statements around blackbox explainers.
11+
### Changed
12+
- Dependencies for numpy/scipy/pandas/scikit-learn relaxed to (1.11.1,0.18.1,0.19.2, 0.18.1) respectively.
13+
- Visualization provider defaults set by environment detection (cloud and local use different providers).
14+
### Experimental (WIP)
15+
- Inline visualizations for show(explanation). This allows cloud notebooks, and offline notebook support.
16+
Dashboard integration still ongoing.
17+
718
## [v0.1.16] - 2019-09-17
819
### Added
920
- Visualize and compute platforms are now refactored and use an extension system. Details on use upcoming in later release.
@@ -192,6 +203,7 @@ and the versioning is mostly derived from [Semantic Versioning](https://semver.o
192203
- Libraries are statically linked where possible.
193204
- Code now conforms to Python Black and its associated flake8.
194205

206+
[v0.1.17]: https://github.com/microsoft/interpret/releases/tag/v0.1.17
195207
[v0.1.16]: https://github.com/microsoft/interpret/releases/tag/v0.1.16
196208
[v0.1.15]: https://github.com/microsoft/interpret/releases/tag/v0.1.15
197209
[v0.1.14]: https://github.com/microsoft/interpret/releases/tag/v0.1.14

python/interpret-core/interpret/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Distributed under the MIT software license
33

44
# NOTE: Version is replaced by a regex script.
5-
__version__ = "0.1.16"
5+
__version__ = "0.1.17"

python/interpret-core/js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interpret-inline",
3-
"version": "0.0.16",
3+
"version": "0.1.17",
44
"description": "Interpret inline library for exposing UX across all notebook environments.",
55
"main": "index.js",
66
"keywords": [],

python/interpret-core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
name = "interpret-core"
77
# NOTE: Version is replaced by a regex script.
8-
version = "0.1.16"
8+
version = "0.1.17"
99
long_description = """
1010
Core system for **the** interpret package.
1111

python/interpret/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
name = "interpret"
77
# NOTE: Version is replaced by a regex script.
8-
version = "0.1.16"
8+
version = "0.1.17"
99
long_description = """
1010
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
1111

0 commit comments

Comments
 (0)