From 09934891333eede5b74b186bfbe6327c9011212c Mon Sep 17 00:00:00 2001 From: maciejkula Date: Thu, 26 Jan 2017 18:17:03 -0800 Subject: [PATCH] Bump version to 1.12 --- changelog.md | 2 +- lightfm/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 4d13a257..fd2a4e4e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## [Unreleased][unreleased] +## [1.12][2017-01-26] ### Changed - Ranks are now computed pessimistically: when two items are tied, the positive item is assumed to have higher rank. This will lead to zero precision scores for models that predict all zeros, for example. - The model will raise a ValueError if, during fitting, any of the parameters become non-finite (NaN or +/- infinity). diff --git a/lightfm/__init__.py b/lightfm/__init__.py index 595af73c..fdfb10d6 100644 --- a/lightfm/__init__.py +++ b/lightfm/__init__.py @@ -3,6 +3,6 @@ except NameError: from .lightfm import LightFM -__version__ = '1.11' +__version__ = '1.12' __all__ = ['LightFM', 'datasets', 'evaluation']