Skip to content

Commit 86ad290

Browse files
committed
Updated CHANGELOG.md. Bump to v0.1.19
1 parent fed83b4 commit 86ad290

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ 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.19] - 2019-10-25
8+
### Changed
9+
- Changed classification metric exposed between C++/python for EBMs to log loss for future public use.
10+
### Fixed
11+
- Package joblib added to interpret-core as "required" extra.
12+
- Compiler fixes for Oracle Developer Studio.
13+
- Removed undefined behavior in EBM for several unlikely scenarios.
14+
715
## [v0.1.18] - 2019-10-09
816
### Added
917
- Added "main_attr" argument to EBM models. Can now select a subset of features to train main effects on.
@@ -215,6 +223,7 @@ and the versioning is mostly derived from [Semantic Versioning](https://semver.o
215223
- Libraries are statically linked where possible.
216224
- Code now conforms to Python Black and its associated flake8.
217225

226+
[v0.1.19]: https://github.com/microsoft/interpret/releases/tag/v0.1.19
218227
[v0.1.18]: https://github.com/microsoft/interpret/releases/tag/v0.1.18
219228
[v0.1.17]: https://github.com/microsoft/interpret/releases/tag/v0.1.17
220229
[v0.1.16]: https://github.com/microsoft/interpret/releases/tag/v0.1.16

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.18"
5+
__version__ = "0.1.19"

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.18",
3+
"version": "0.1.19",
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.18"
8+
version = "0.1.19"
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.18"
8+
version = "0.1.19"
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)