Skip to content

Commit e36ec53

Browse files
committed
Bump version to 0.9.0 and add release notes to README
1 parent 192ce18 commit e36ec53

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Header-only C++ HNSW implementation with python bindings, insertions and updates
33

44
**NEWS:**
55

6+
**version 0.9.0**
7+
8+
* Fixed incorrect results in bruteforce search with filter (#514) by [@lukaszsmolinski](https://github.com/lukaszsmolinski)
9+
* Fixed missing normalization check in BFIndex (#514) by [@lukaszsmolinski](https://github.com/lukaszsmolinski)
10+
* Throw an exception when fewer than k elements are available (#514) by [@lukaszsmolinski](https://github.com/lukaszsmolinski)
11+
* Remove unused variable (#531) by [@lulyon](https://github.com/lulyon)
12+
* Change cosine similarity to distance in README by [@yurymalkov](https://github.com/yurymalkov)
13+
614
**version 0.8.0**
715

816
* Multi-vector document search and epsilon search (for now, only in C++)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools import Extension, setup
99
from setuptools.command.build_ext import build_ext
1010

11-
__version__ = '0.8.0'
11+
__version__ = '0.9.0'
1212

1313

1414
include_dirs = [

0 commit comments

Comments
 (0)