From 25de4bc2826d99119cb151642cf90b8466ca758c Mon Sep 17 00:00:00 2001 From: maciejkula Date: Sat, 26 May 2018 11:52:09 +0100 Subject: [PATCH] Bump version. Update changelog. --- changelog.md | 3 ++- lightfm/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 11428b45..e5033fb0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,8 +1,9 @@ # Changelog -## [unreleased][unreleased] +## [1.15][2018-05-26] ### Added - Added a check that there is no overlap between test and train in `predict_ranks` (thanks to [@artdgn](https://github.com/artdgn)). +- Added dataset builder functionality. ### Fixed - Fixed error message when item features have the wrong dimensions. - Predict now checks for overflow in inputs to predict. diff --git a/lightfm/__init__.py b/lightfm/__init__.py index 4f640f24..e964c283 100644 --- a/lightfm/__init__.py +++ b/lightfm/__init__.py @@ -3,6 +3,6 @@ except NameError: from .lightfm import LightFM -__version__ = '1.14' +__version__ = "1.15" -__all__ = ['LightFM', 'datasets', 'evaluation'] +__all__ = ["LightFM", "datasets", "evaluation"]