From 68bb744bff555b47b33d14af0176cdf99b859095 Mon Sep 17 00:00:00 2001 From: Paul Koch Date: Wed, 31 May 2023 20:22:08 -0700 Subject: [PATCH] release candidate for v0.4.2 --- CHANGELOG.md | 11 +++++++++++ python/interpret-core/interpret/_version.py | 2 +- python/interpret-core/setup.py | 2 +- python/interpret/setup.py | 2 +- shared/vis/package.json | 2 +- 5 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b215d8b05..66d658f27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/python/interpret-core/interpret/_version.py b/python/interpret-core/interpret/_version.py index 901d4dd44..edc8a0792 100644 --- a/python/interpret-core/interpret/_version.py +++ b/python/interpret-core/interpret/_version.py @@ -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" diff --git a/python/interpret-core/setup.py b/python/interpret-core/setup.py index 337a0da0c..1693e761a 100644 --- a/python/interpret-core/setup.py +++ b/python/interpret-core/setup.py @@ -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. diff --git a/python/interpret/setup.py b/python/interpret/setup.py index a0c3ad1d9..cb5f6b06f 100644 --- a/python/interpret/setup.py +++ b/python/interpret/setup.py @@ -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. diff --git a/shared/vis/package.json b/shared/vis/package.json index 863776649..27c6dcf67 100644 --- a/shared/vis/package.json +++ b/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": [],