Skip to content

Commit 9a6ccf0

Browse files
committed
update to v0.4.1
1 parent 202c723 commit 9a6ccf0

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.4.1] - 2023-05-16
8+
### Added
9+
- support for visualizations in streamlit
10+
### Fixed
11+
- fixed dangling pointer issue in call to CalcInteractionStrength
12+
713
## [v0.4.0] - 2023-05-11
814
### Added
915
- alternative objective functions: poisson_deviance, tweedie_deviance, gamma_deviance, pseudo_huber, rmse_log (log link)

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.4.0"
5+
__version__ = "0.4.1"

python/interpret-core/setup.py

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

1313
name = "interpret-core"
1414
# NOTE: Version is replaced by a regex script.
15-
version = "0.4.0"
15+
version = "0.4.1"
1616
long_description = """
1717
Core system for the interpret package.
1818

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

shared/libebm/interpret.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "root", "root", "{F5894036-A
2525
..\..\CONTRIBUTING.md = ..\..\CONTRIBUTING.md
2626
..\..\README.md = ..\..\README.md
2727
..\..\scripts\release_process.txt = ..\..\scripts\release_process.txt
28+
..\..\python\interpret\setup.py = ..\..\python\interpret\setup.py
2829
vs_python_setup.txt = vs_python_setup.txt
2930
EndProjectSection
3031
EndProject

shared/vis/package.json

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

0 commit comments

Comments
 (0)