diff --git a/changelog.md b/changelog.md index 13d6c49b..bfceb0d1 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## [unreleased][unreleased] +## [1.13][2017-05-20] ### Added - added get_{user/item}_representations functions to facilitate extracting the latent representations out of the model. ### Fixed diff --git a/lightfm/__init__.py b/lightfm/__init__.py index fdfb10d6..c66f2cf7 100644 --- a/lightfm/__init__.py +++ b/lightfm/__init__.py @@ -3,6 +3,6 @@ except NameError: from .lightfm import LightFM -__version__ = '1.12' +__version__ = '1.13' __all__ = ['LightFM', 'datasets', 'evaluation']