From 871e0c7229b012108131b6211cd617e23a3b24bf Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Sat, 10 Dec 2022 16:17:11 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.1=20=E2=86=92=200.6.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- implicit/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/implicit/__init__.py b/implicit/__init__.py index b63d8a0..0f0b82e 100644 --- a/implicit/__init__.py +++ b/implicit/__init__.py @@ -1,5 +1,5 @@ from . import als, approximate_als, bpr, lmf, nearest_neighbours -__version__ = "0.6.1" +__version__ = "0.6.2" __all__ = ["als", "approximate_als", "bpr", "nearest_neighbours", "lmf", "__version__"] diff --git a/setup.cfg b/setup.cfg index 0605135..0d35c8a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.1 +current_version = 0.6.2 commit = True tag = True diff --git a/setup.py b/setup.py index 2913d69..495167c 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ def exclude_non_implicit_cmake_files(cmake_manifest): setup( name="implicit", - version="0.6.1", + version="0.6.2", description="Collaborative Filtering for Implicit Feedback Datasets", long_description=read("README.md"), long_description_content_type="text/markdown",