Skip to content

Commit bc690a4

Browse files
authored
change to v0.0.9 (#169)
Bump versions in files to 0.0.9
1 parent 1f659da commit bc690a4

File tree

6 files changed

+33
-25
lines changed

6 files changed

+33
-25
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: 4 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,7 @@
1-
# SVS 0.0.8 Release Notes
1+
# SVS 0.0.9 Release Notes
22

33
## Additions and Changes
44

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
5+
* fix: Multi-vector dynamic vamana index Save/Load functionality (#162)
6+
* feature: save and load in flat index (#163)
7+
* fix: Handle corner in dynamic index with insufficient valid search results (#164)

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

tests/svs/lib/version.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ CATCH_TEST_CASE("Version Numbers", "[lib][versions]") {
4646

4747
// Keep in-sync with CMakeLists.txt
4848
CATCH_TEST_CASE("Global Version", "[lib][versions]") {
49-
static_assert(svs::lib::svs_version == svs::lib::Version(0, 0, 8), "Version mismatch!");
50-
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 8));
49+
static_assert(svs::lib::svs_version == svs::lib::Version(0, 0, 9), "Version mismatch!");
50+
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 9));
5151
}

0 commit comments

Comments
 (0)