Skip to content

Commit 2b960f0

Browse files
committed
change to v0.0.9
1 parent 43c078a commit 2b960f0

File tree

5 files changed

+32
-22
lines changed

5 files changed

+32
-22
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ project(svs
2323
# - /bindings/python/tests/test_common.py
2424
# Manually keep in-sync with:
2525
# - /bindings/python/setup.py
26-
VERSION 0.0.8
26+
VERSION 0.0.9
2727
)
2828

2929
set(SVS_LIB svs_devel)

HISTORY.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# SVS 0.0.8 Release Notes
2+
3+
## Additions and Changes
4+
5+
* Addition of 8-bit scalar quantization support to C++ interface
6+
7+
* Introduced multi-vector index and batch iterator support that allows multiple vectors to be mapped to the same external ID
8+
9+
* Automatic ISA dispatching with optimizations based on AVX support
10+
11+
* Enabled compatibility with ARM and MacOS
12+
13+
* Enhanced logging capabilities
14+
15+
* Updated vamana iterator API
16+
17+
* Broader [shared library](https://github.com/intel/ScalableVectorSearch/releases) support:
18+
19+
* gcc-11+, clang-18+, glibc 2.26+ compatibility
20+
21+
* Static library provided in addition to .so
22+
23+
* Intel(R) MKL linked within the shared library - no need for Intel(R) MKL in user environment
24+
125
# SVS 0.0.7 Release Notes
226

327
## Additions and Changes

NEWS.md

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,9 @@
1-
# SVS 0.0.8 Release Notes
1+
# SVS 0.0.9 Release Notes
22

3-
## Additions and Changes
4-
5-
* Addition of 8-bit scalar quantization support to C++ interface
6-
7-
* Introduced multi-vector index and batch iterator support that allows multiple vectors to be mapped to the same external ID
8-
9-
* Automatic ISA dispatching with optimizations based on AVX support
3+
Bugfix release for multi-vector dynamic vamana index save/load functionality.
104

11-
* Enabled compatibility with ARM and MacOS
12-
13-
* Enhanced logging capabilities
14-
15-
* Updated vamana iterator API
5+
## Additions and Changes
166

17-
* Broader [shared library](https://github.com/intel/ScalableVectorSearch/releases) support:
7+
* Extended "Multi-vector dynamic vamana index" test section "Save/Load" to enforce multi-vector initialization and compare search results before and after saving/loading.
188

19-
* gcc-11+, clang-18+, glibc 2.26+ compatibility
20-
21-
* Static library provided in addition to .so
22-
23-
* Intel(R) MKL linked within the shared library - no need for Intel(R) MKL in user environment
9+
* Fixed labels saving/loading in `MultiMutableVamanaIndex`.

bindings/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
setup(
4040
name="scalable-vs",
41-
version="0.0.8",
41+
version="0.0.9",
4242
description="Scalable Vector Search (SVS) is a performance library for vector similarity search.",
4343
long_description=long_description,
4444
long_description_content_type="text/markdown",

bindings/python/tests/test_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def tearDown(self):
4242
#####
4343

4444
def test_version(self):
45-
self.assertEqual(svs.library_version(), "v0.0.8")
45+
self.assertEqual(svs.library_version(), "v0.0.9")
4646

4747
def test_conversion(self):
4848
# signed

0 commit comments

Comments
 (0)