From 53e2b8d2334a936febf769cfd07613d7b027b8c8 Mon Sep 17 00:00:00 2001 From: "paul.lo" Date: Thu, 13 Jan 2022 17:05:09 -0800 Subject: [PATCH] Update changelog and version number for v0.12.0 --- causalml/__init__.py | 2 +- docs/changelog.rst | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/causalml/__init__.py b/causalml/__init__.py index 6a836354..a66c8a0d 100644 --- a/causalml/__init__.py +++ b/causalml/__init__.py @@ -1,5 +1,5 @@ name = 'causalml' -__version__ = '0.11.1' +__version__ = '0.12.0' __all__ = ['dataset', 'features', 'feature_selection', diff --git a/docs/changelog.rst b/docs/changelog.rst index e58a0247..4c09e0cd 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,30 @@ Changelog ========= + +0.12.0 (Jan 2022) +----------------- +- CausalML surpassed `637K downloads `_ on PyPI and `2K stars `_ on Github! +- We have 4 new community contributors, Luis (`@lgmoneda `_), Ravi (`@raviksharma `_), Louis (`@LouisHernandez17 `_) and JackRab (`@JackRab `_). Thanks for the contribution! +- We refactored and speeded up UpliftTreeClassifier/UpliftRandomForestClassifier by 5x with Cython (`#422 `_ `#440 `_ by @jeongyoonlee) +- We revamped our `API documentation `_, it now includes the latest methodology, references, installation, notebook examples, and graphs! (`#413 `_ by @huigangchen @t-tte @zhenyuz0500 @jeongyoonlee @paullo0106) +- Our team gave talks at `2021 Conference on Digital Experimentation @ MIT (CODE@MIT) `_, `Causal Data Science Meeting 2021 `_, and `KDD 2021 Tutorials `_ on CausalML introduction and applications. Please take a look if you missed them! Full list of publications and talks can be found here. + +Updates +~~~~~~~~~~~~~ +- Update documentation on Instrument Variable methods @huigangchen (`#447 `_) +- Add benchmark simulation studies example notebook by @t-tte (`#443 `_) +- Add sample_weight support for R-learner by @paullo0106 (`#425 `_) +- Fix incorrect binning of numeric features in UpliftTreeClassifier by @jeongyoonlee (`#420 `_) +- Update papers, talks, and publication info to README and refs.bib by @zhenyuz0500 (`#410 `_ `#414 `_ `#433 `_) +- Add instruction for contributing.md doc by @jeongyoonlee (`#408 `_) +- Fix incorrect feature importance calculation logic by @paullo0106 (`#406 `_) +- Add parallel jobs support for NearestNeighbors search with n_jobs parameter by @paullo0106 (`#389 `_) +- Fix bug in simulate_randomized_trial by @jroessler (`#385 `_) +- Add GA pytest workflow by @ppstacy (`#380 `_) + + + 0.11.0 (2021-07-28) ------------------ - CausalML surpassed `2K stars `_!