From bf28fa82445063970c336231282fb5c2a9359565 Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Wed, 31 Aug 2022 13:28:05 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.6.1?= 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 0a36b4e..b63d8a0 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.0" +__version__ = "0.6.1" __all__ = ["als", "approximate_als", "bpr", "nearest_neighbours", "lmf", "__version__"] diff --git a/setup.cfg b/setup.cfg index 85aaa3b..0605135 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True diff --git a/setup.py b/setup.py index aa38b0e..faf1088 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.0", + version="0.6.1", description="Collaborative Filtering for Implicit Feedback Datasets", long_description=read("README.md"), long_description_content_type="text/markdown",