Skip to content

Commit

Permalink
Prepare for release v1.7.1. (#1915)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #1915

Reviewed By: mdouze

Differential Revision: D28749880

Pulled By: beauby

fbshipit-source-id: 4dcb0a5eac8f84d26570a0fb6f3e357bc2f1151c
  • Loading branch information
Lucas Hosseini authored and facebook-github-bot committed May 27, 2021
1 parent a7d62b3 commit cff072b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ We try to indicate most contributions here with the contributor names who are no
the Facebook Faiss team. Feel free to add entries here if you submit a PR.

## [Unreleased]

## [1.7.1] - 2021-05-27
### Added
- Support for building C bindings through the `FAISS_ENABLE_C_API` CMake option.
- Serializing the indexes with the python pickle module
Expand Down Expand Up @@ -199,7 +201,8 @@ by conda install -c pytorch faiss-gpu cudatoolkit=10.0.
- C bindings.
- Extended tutorial to GPU indices.

[Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.0...HEAD
[Unreleased]: https://github.com/facebookresearch/faiss/compare/v1.7.1...HEAD
[1.7.1]: https://github.com/facebookresearch/faiss/compare/v1.7.0...v1.7.1
[1.7.0]: https://github.com/facebookresearch/faiss/compare/v1.6.5...v1.7.0
[1.6.5]: https://github.com/facebookresearch/faiss/compare/v1.6.4...v1.6.5
[1.6.4]: https://github.com/facebookresearch/faiss/compare/v1.6.3...v1.6.4
Expand Down
3 changes: 2 additions & 1 deletion conda/faiss-gpu/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ outputs:
- mkl =2018
- cudatoolkit {{ cudatoolkit }}
run:
- mkl >=2018
- mkl >=2018 # [not win]
- mkl >=2018,<2021 # [win]
- {{ pin_compatible('cudatoolkit', max_pin='x.x') }}
test:
commands:
Expand Down
3 changes: 2 additions & 1 deletion conda/faiss/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ outputs:
host:
- mkl =2018
run:
- mkl >=2018
- mkl >=2018 # [not win]
- mkl >=2018,<2021 # [win]
test:
commands:
- test -f $PREFIX/lib/libfaiss$SHLIB_EXT # [not win]
Expand Down
2 changes: 1 addition & 1 deletion faiss/Index.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#define FAISS_VERSION_MAJOR 1
#define FAISS_VERSION_MINOR 7
#define FAISS_VERSION_PATCH 0
#define FAISS_VERSION_PATCH 1

/**
* @namespace faiss
Expand Down
2 changes: 1 addition & 1 deletion faiss/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"""
setup(
name='faiss',
version='1.7.0',
version='1.7.1',
description='A library for efficient similarity search and clustering of dense vectors',
long_description=long_description,
url='https://github.com/facebookresearch/faiss',
Expand Down

0 comments on commit cff072b

Please sign in to comment.