From 7c2d2388a492d65fdda934c7e74ae87acaeed066 Mon Sep 17 00:00:00 2001 From: Lucas Hosseini Date: Wed, 27 Jan 2021 03:35:40 -0800 Subject: [PATCH] Bump version to 1.7.0. (#1652) Summary: Pull Request resolved: https://github.com/facebookresearch/faiss/pull/1652 Reviewed By: mdouze Differential Revision: D26077948 Pulled By: beauby fbshipit-source-id: 599ee61edd2425250948577cb55d145d9179ab25 --- README.md | 4 +++- faiss/Index.h | 4 ++-- faiss/python/setup.py | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 755576c0fc..aeb1889f4f 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,9 @@ Faiss is a library for efficient similarity search and clustering of dense vecto ## NEWS -*NEW: version 1.6.5 (2020-11-20) pytorch / faiss interoperability improvements * +*NEW: version 1.7.0 (2021-01-27) Support for in-register 4-bit PQ search* + +*NEW: version 1.6.5 (2020-11-20) pytorch / faiss interoperability improvements* *NEW: version 1.6.4 (2020-10-20) Move to cmake -- Windows support* diff --git a/faiss/Index.h b/faiss/Index.h index 44dd4c27b1..c52bb8fc58 100644 --- a/faiss/Index.h +++ b/faiss/Index.h @@ -17,8 +17,8 @@ #include #define FAISS_VERSION_MAJOR 1 -#define FAISS_VERSION_MINOR 6 -#define FAISS_VERSION_PATCH 5 +#define FAISS_VERSION_MINOR 7 +#define FAISS_VERSION_PATCH 0 /** * @namespace faiss diff --git a/faiss/python/setup.py b/faiss/python/setup.py index fb91dfec77..8a28eeeb18 100644 --- a/faiss/python/setup.py +++ b/faiss/python/setup.py @@ -37,7 +37,7 @@ """ setup( name='faiss', - version='1.6.5', + version='1.7.0', description='A library for efficient similarity search and clustering of dense vectors', long_description=long_description, url='https://github.com/facebookresearch/faiss',