Skip to content

Commit c08cbff

Browse files
beaubyfacebook-github-bot
authored andcommitted
Prepare for v1.7.2 release. (#2151)
Summary: Pull Request resolved: #2151 Reviewed By: mdouze Differential Revision: D33157463 Pulled By: beauby fbshipit-source-id: 8f8580a7ad953484f41fbbb2d001f3484fab4c3d
1 parent d68ff42 commit c08cbff

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

+4-1
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.2] - 2021-12-15
1214
### Added
1315
- Support LSQ on GPU (by @KinglittleQ)
1416
- Support for exact 1D kmeans (by @KinglittleQ)
@@ -204,7 +206,8 @@ by conda install -c pytorch faiss-gpu cudatoolkit=10.0.
204206
- C bindings.
205207
- Extended tutorial to GPU indices.
206208

207-
[Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.1...HEAD
209+
[Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.2...HEAD
210+
[1.7.2]: https://github.com/facebookresearch/faiss/compare/v1.7.1...v1.7.2
208211
[1.7.1]: https://github.com/facebookresearch/faiss/compare/v1.7.0...v1.7.1
209212
[1.7.0]: https://github.com/facebookresearch/faiss/compare/v1.6.5...v1.7.0
210213
[1.6.5]: https://github.com/facebookresearch/faiss/compare/v1.6.4...v1.6.5

faiss/Index.h

+1-1
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 1
21+
#define FAISS_VERSION_PATCH 2
2222

2323
/**
2424
* @namespace faiss

faiss/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"""
5050
setup(
5151
name='faiss',
52-
version='1.7.1',
52+
version='1.7.2',
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)