File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ We try to indicate most contributions here with the contributor names who are no
99the Facebook Faiss team. Feel free to add entries here if you submit a PR.
1010
1111## [ Unreleased]
12+
13+ ## [ 1.7.1] - 2021-05-27
1214### Added
1315- Support for building C bindings through the ` FAISS_ENABLE_C_API ` CMake option.
1416- Serializing the indexes with the python pickle module
@@ -199,7 +201,8 @@ by conda install -c pytorch faiss-gpu cudatoolkit=10.0.
199201- C bindings.
200202- Extended tutorial to GPU indices.
201203
202- [ Unreleased ] : https://github.com/facebookresearch/faiss/compare/v1.7.0...HEAD
204+ [ Unreleased ] : https://github.com/facebookresearch/faiss/compare/v1.7.1...HEAD
205+ [ 1.7.1 ] : https://github.com/facebookresearch/faiss/compare/v1.7.0...v1.7.1
203206[ 1.7.0 ] : https://github.com/facebookresearch/faiss/compare/v1.6.5...v1.7.0
204207[ 1.6.5 ] : https://github.com/facebookresearch/faiss/compare/v1.6.4...v1.6.5
205208[ 1.6.4 ] : https://github.com/facebookresearch/faiss/compare/v1.6.3...v1.6.4
Original file line number Diff line number Diff line change @@ -42,7 +42,8 @@ outputs:
4242 - mkl =2018
4343 - cudatoolkit {{ cudatoolkit }}
4444 run :
45- - mkl >=2018
45+ - mkl >=2018 # [not win]
46+ - mkl >=2018,<2021 # [win]
4647 - {{ pin_compatible('cudatoolkit', max_pin='x.x') }}
4748 test :
4849 commands :
Original file line number Diff line number Diff line change @@ -40,7 +40,8 @@ outputs:
4040 host :
4141 - mkl =2018
4242 run :
43- - mkl >=2018
43+ - mkl >=2018 # [not win]
44+ - mkl >=2018,<2021 # [win]
4445 test :
4546 commands :
4647 - test -f $PREFIX/lib/libfaiss$SHLIB_EXT # [not win]
Original file line number Diff line number Diff line change 1818
1919#define FAISS_VERSION_MAJOR 1
2020#define FAISS_VERSION_MINOR 7
21- #define FAISS_VERSION_PATCH 0
21+ #define FAISS_VERSION_PATCH 1
2222
2323/* *
2424 * @namespace faiss
Original file line number Diff line number Diff line change 4949"""
5050setup (
5151 name = 'faiss' ,
52- version = '1.7.0 ' ,
52+ version = '1.7.1 ' ,
5353 description = 'A library for efficient similarity search and clustering of dense vectors' ,
5454 long_description = long_description ,
5555 url = 'https://github.com/facebookresearch/faiss' ,
You can’t perform that action at this time.
0 commit comments