From f6cc8d3119dd5a9a2d8d186bb3ce5b3fe0b1c21d Mon Sep 17 00:00:00 2001 From: Flynn Date: Thu, 9 Dec 2021 00:36:17 -0500 Subject: [PATCH] release 0.3.0 (#85) --- CHANGELOG.rst | 10 ++++++++++ pyproject.toml | 2 +- skgrf/_version.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4400023..cc5bad0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Release Changelog ----------------- +0.3.0 (2021-12-09) +~~~~~~~~~~~~~~~~~~ + +* Allow X to contain NaN values on all estimators except local linear. +* Allow ``skgrf`` predictors to work with shap using ``skgrf.utils.shap.shap_patch`` context manager +* Fix Tree.values for classifiers +* Fix Tree.feature to use proper value for leaf nodes +* Fix package includes to prevent installing extra files to site-packages +* Drop support for Python 3.6 + 0.2.1 (2021-09-03) ~~~~~~~~~~~~~~~~~~ diff --git a/pyproject.toml b/pyproject.toml index 7832286..5ab3780 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "skgrf" -version = "0.2.1" +version = "0.3.0" description = "python bindings for C++ generalized random forests (grf)" authors = ["flynn "] build = "build.py" diff --git a/skgrf/_version.py b/skgrf/_version.py index 3ced358..493f741 100644 --- a/skgrf/_version.py +++ b/skgrf/_version.py @@ -1 +1 @@ -__version__ = "0.2.1" +__version__ = "0.3.0"