From 0cf189e01936429e63e95faca5d88d31e1f1dc3d Mon Sep 17 00:00:00 2001 From: pzivich Date: Thu, 3 Oct 2019 09:10:02 -0400 Subject: [PATCH] update changelog and version --- CHANGELOG.md | 7 +++++++ zepid/version.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55fb2af..7a403c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## Change logs +### v0.8.1 +Added support for `pygam`'s `LogisticGAM` for TMLE with custom models (Thanks darrenreger!) + +Removed warning for TMLE with custom models following updates to Issue #109 I plan on creating a smarter warning +system that flags non-Donsker class machine learning algorithms and warns the user. I still need to think through +how to do this. + ### v0.8.0 `IPTW` had a massive overhaul. It now follows a similar structure to `AIPTW` and other causal inference methods. One *major* change is that missing data is dropped before any calculations. Therefore, if missing data was present for diff --git a/zepid/version.py b/zepid/version.py index 32a90a3..ef72cc0 100644 --- a/zepid/version.py +++ b/zepid/version.py @@ -1 +1 @@ -__version__ = '0.8.0' +__version__ = '0.8.1'