diff --git a/.gitignore b/.gitignore index 655a458a..71138ee3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.eggs/ *.egg-info/ env_docs/ .idea diff --git a/causalml/__init__.py b/causalml/__init__.py index 1803e8e7..51434664 100644 --- a/causalml/__init__.py +++ b/causalml/__init__.py @@ -1,5 +1,5 @@ name = 'causalml' -__version__ = '0.7.0' +__version__ = '0.7.1' __all__ = ['dataset', 'features', 'inference', diff --git a/docs/changelog.rst b/docs/changelog.rst index a6119bf8..8155a27f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -3,6 +3,22 @@ Changelog ========= +0.7.1 (2020-05-07) +------------------ +Special thanks to our new community contributor, Katherine (`@khof312 `_)! + +Major Updates +~~~~~~~~~~~~~ +- Adjust matching distances by a factor of the number of matching columns in propensity score matching by @yungmsh (`#157 `_) +- Add TMLE-based AUUC/Qini/lift calculation and plotting by @ppstacy (`#165 `_) + +Minor Updates +~~~~~~~~~~~~~ +- Fix typos and update documents by @paulluo0106, @khof312, @jeongyoonlee (`#150 `_, `#151 `_, `#155 `_, `#163 `_) +- Fix error in `UpliftTreeClassifier.kl_divergence()` for `pk == 1 or 0` by @jeongyoonlee (`#169 `_) +- Fix error in `BaseRRegressor.fit()` without propensity score input by @jeongyoonlee (`#170 `_) + + 0.7.0 (2020-02-28) ------------------ Special thanks to our new community contributor, Steve (`@steveyang90 `_)!