Skip to content

Commit cff072b

Browse files
Lucas Hosseinifacebook-github-bot
authored andcommitted
Prepare for release v1.7.1. (#1915)
Summary: Pull Request resolved: #1915 Reviewed By: mdouze Differential Revision: D28749880 Pulled By: beauby fbshipit-source-id: 4dcb0a5eac8f84d26570a0fb6f3e357bc2f1151c
1 parent a7d62b3 commit cff072b

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ We try to indicate most contributions here with the contributor names who are no
99
the 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

conda/faiss-gpu/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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:

conda/faiss/meta.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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]

faiss/Index.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
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

faiss/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"""
5050
setup(
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',

0 commit comments

Comments
 (0)