From efa81eec762e79d26121de56a58c325ee3ca0f83 Mon Sep 17 00:00:00 2001 From: Lucas Hosseini Date: Fri, 21 Jun 2019 16:01:13 +0200 Subject: [PATCH] Prepare for v1.5.3 release. --- Index.h | 2 +- conda/Dockerfile | 4 ++-- python/setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Index.h b/Index.h index d4f95f28fb..a1921c8364 100644 --- a/Index.h +++ b/Index.h @@ -18,7 +18,7 @@ #define FAISS_VERSION_MAJOR 1 #define FAISS_VERSION_MINOR 5 -#define FAISS_VERSION_PATCH 2 +#define FAISS_VERSION_PATCH 3 /** * @namespace faiss diff --git a/conda/Dockerfile b/conda/Dockerfile index 94b1e8507f..9184e8fea3 100644 --- a/conda/Dockerfile +++ b/conda/Dockerfile @@ -3,8 +3,8 @@ FROM soumith/conda-cuda:latest COPY ./ faiss WORKDIR /faiss/conda -ENV FAISS_BUILD_VERSION 1.5.2 -ENV FAISS_BUILD_NUMBER 1 +ENV FAISS_BUILD_VERSION 1.5.3 +ENV FAISS_BUILD_NUMBER 0 RUN conda build faiss --no-anaconda-upload -c pytorch RUN CUDA_ROOT=/usr/local/cuda-8.0 \ CUDA_ARCH="-gencode=arch=compute_35,code=compute_35 \ diff --git a/python/setup.py b/python/setup.py index 7ca0b8bf74..cd92fb133e 100644 --- a/python/setup.py +++ b/python/setup.py @@ -27,7 +27,7 @@ """ setup( name='faiss', - version='1.5.2', + version='1.5.3', description='A library for efficient similarity search and clustering of dense vectors', long_description=long_description, url='https://github.com/facebookresearch/faiss',