Skip to content

Commit

Permalink
release candidate for v0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jun 1, 2023
1 parent 4e3ac10 commit 68bb744
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and the versioning is mostly derived from [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [v0.4.2] - 2023-05-31
### Added
- support for specifying outer bags
### Changed
- exceptions raised in the joblib child processes will be re-raised in the main process rather than be expressed as a TerminatedWorkerError
- small additional improvements in memory compression
- small improvements in maximizing the benefit of the privacy budget for Differentially Private EBMs
### Fixed
- fixed segfault that was occurring in the Anaconda build
- fixed a bug that would prevent Differentially Private EBMs from using the exclude parameter

## [v0.4.1] - 2023-05-16
### Added
- support for visualizations in streamlit
Expand Down
2 changes: 1 addition & 1 deletion python/interpret-core/interpret/_version.py
Expand Up @@ -2,4 +2,4 @@
# Distributed under the MIT software license

# NOTE: Version is replaced by a regex script.
__version__ = "0.4.1"
__version__ = "0.4.2"
2 changes: 1 addition & 1 deletion python/interpret-core/setup.py
Expand Up @@ -12,7 +12,7 @@

name = "interpret-core"
# NOTE: Version is replaced by a regex script.
version = "0.4.1"
version = "0.4.2"
long_description = """
Core system for the interpret package.
Expand Down
2 changes: 1 addition & 1 deletion python/interpret/setup.py
Expand Up @@ -5,7 +5,7 @@

name = "interpret"
# NOTE: Version is replaced by a regex script.
version = "0.4.1"
version = "0.4.2"
long_description = """
In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
Expand Down
2 changes: 1 addition & 1 deletion shared/vis/package.json
@@ -1,6 +1,6 @@
{
"name": "@interpretml/interpret-inline",
"version": "0.4.1",
"version": "0.4.2",
"description": "Interpret inline library for rendering visualizations across all notebook environments.",
"main": "index.js",
"keywords": [],
Expand Down

0 comments on commit 68bb744

Please sign in to comment.