Skip to content

Commit ef80855

Browse files
committed
Updated CHANGELOG.md. Bump to v0.1.18. Fixed version script.
1 parent bdb56a1 commit ef80855

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.18] - 2019-10-09
8+
### Added
9+
- Added "main_attr" argument to EBM models. Can now select a subset of features to train main effects on.
10+
- Added AzureML notebook VM detection for visualizations (switches to inline).
11+
### Fixed
12+
- Missing values now correctly throw exceptions on explainers.
13+
- Major visualization fix for pairwise interaction heatmaps from EBM.
14+
- Corrected inline visualization height in Notebooks.
15+
### Changed
16+
- Various internal C++ fixes.
17+
- New error messages around EBM if the model isn't fitted before calling explain_*.
18+
719
## [v0.1.17] - 2019-09-24
820
### Fixed
921
- Morris sensitivity now works for both predict and predict_proba on scikit models.
@@ -203,6 +215,7 @@ and the versioning is mostly derived from [Semantic Versioning](https://semver.o
203215
- Libraries are statically linked where possible.
204216
- Code now conforms to Python Black and its associated flake8.
205217

218+
[v0.1.18]: https://github.com/microsoft/interpret/releases/tag/v0.1.18
206219
[v0.1.17]: https://github.com/microsoft/interpret/releases/tag/v0.1.17
207220
[v0.1.16]: https://github.com/microsoft/interpret/releases/tag/v0.1.16
208221
[v0.1.15]: https://github.com/microsoft/interpret/releases/tag/v0.1.15

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.17"
5+
__version__ = "0.1.18"

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.1.17",
3+
"version": "0.1.18",
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.17"
8+
version = "0.1.18"
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.17"
8+
version = "0.1.18"
99
long_description = """
1010
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
1111

python/scripts/update-version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
(interpret_core_setup, 'version = "{}"'),
2626
(interpret_setup, 'version = "{}"'),
2727
(interpret_core_version, '__version__ = "{}"'),
28-
(interpret_inline_version, 'version: "{}"')
28+
(interpret_inline_version, ' "version": "{}",')
2929
]
3030
for target_path, target_format in targets:
3131
new_lines = []

0 commit comments

Comments
 (0)