From 35921e844f26536c60245d41afb1c7a0c1f5215a Mon Sep 17 00:00:00 2001 From: Jeong-Yoon Lee Date: Fri, 4 Feb 2022 19:06:39 -0800 Subject: [PATCH] update changelog and version number for v0.12.1 (#471) --- causalml/__init__.py | 2 +- docs/changelog.rst | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/causalml/__init__.py b/causalml/__init__.py index a66c8a0d..e9480e55 100644 --- a/causalml/__init__.py +++ b/causalml/__init__.py @@ -1,5 +1,5 @@ name = 'causalml' -__version__ = '0.12.0' +__version__ = '0.12.1' __all__ = ['dataset', 'features', 'feature_selection', diff --git a/docs/changelog.rst b/docs/changelog.rst index 847ad845..bbb47389 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,16 @@ Changelog ========= +0.12.1 (Feb 2022) +----------------- +This patch includes two bug fixes for UpliftRandomForestClassifier as follows: + +Updates +~~~~~~~~~~~~~ +- `#462 `_ by @paullo0106: Use the correct treatment_idx for fillTree() when applying validation data set +- `#468 `_ by @jeongyoonlee: Switch the joblib backend for UpliftRandomForestClassifier to threading to avoid memory copy across trees + + 0.12.0 (Jan 2022) ----------------- - CausalML surpassed `637K downloads `_ on PyPI and `2,500 stars `_ on Github!