From 04de38d5ac71a9891300440d9927a3a0ddd4ea03 Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Fri, 29 Sep 2023 13:42:59 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.1=20=E2=86=92=200.7.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 21c8afa..c7d4546 100644 --- a/implicit/__init__.py +++ b/implicit/__init__.py @@ -1,5 +1,5 @@ from . import als, approximate_als, bpr, lmf, nearest_neighbours -__version__ = "0.7.1" +__version__ = "0.7.2" __all__ = ["als", "approximate_als", "bpr", "nearest_neighbours", "lmf", "__version__"] diff --git a/setup.cfg b/setup.cfg index 602fd64..842a62a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.1 +current_version = 0.7.2 commit = True tag = True diff --git a/setup.py b/setup.py index c0b5e3e..547c3db 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ def exclude_non_implicit_cmake_files(cmake_manifest): setup( name="implicit", - version="0.7.1", + version="0.7.2", description="Collaborative Filtering for Implicit Feedback Datasets", long_description=read("README.md"), long_description_content_type="text/markdown",