From 47f5ede7d14afa366f6dd551bcb413362c8fbd22 Mon Sep 17 00:00:00 2001 From: Cam Davidson-Pilon Date: Thu, 24 Jan 2019 15:53:10 -0500 Subject: [PATCH] bump version --- CHANGELOG.md | 3 +++ docs/conf.py | 2 +- lifelines/version.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d155b5f4e..3aebf867f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ### Changelogs +#### 0.17.3 + - Fix in `compute_residuals` when using `schoenfeld` and the minumum duration has only censored subjects. + #### 0.17.2 - Another round of serious performance improvements for the Cox models. Up to 2x faster for CoxPHFitter and CoxTimeVaryingFitter. This was mostly the result of using NumPy's `einsum` to simplify a previous `for` loop. The downside is the code is more esoteric now. I've added comments as necessary though 🤞 diff --git a/docs/conf.py b/docs/conf.py index d81e0cd5a..f6b361343 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # # The short X.Y version. -version = "0.17.2" +version = "0.17.3" # The full version, including dev info release = version diff --git a/lifelines/version.py b/lifelines/version.py index 4000f7222..f9a4af8fd 100644 --- a/lifelines/version.py +++ b/lifelines/version.py @@ -1,4 +1,4 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals -__version__ = "0.17.2" +__version__ = "0.17.3"