Skip to content

change to v0.0.9 #169

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ project(svs
# - /bindings/python/tests/test_common.py
# Manually keep in-sync with:
# - /bindings/python/setup.py
VERSION 0.0.8
VERSION 0.0.9
)

set(SVS_LIB svs_devel)
Expand Down
24 changes: 24 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# SVS 0.0.8 Release Notes

## Additions and Changes

* Addition of 8-bit scalar quantization support to C++ interface

* Introduced multi-vector index and batch iterator support that allows multiple vectors to be mapped to the same external ID

* Automatic ISA dispatching with optimizations based on AVX support

* Enabled compatibility with ARM and MacOS

* Enhanced logging capabilities

* Updated vamana iterator API

* Broader [shared library](https://github.com/intel/ScalableVectorSearch/releases) support:

* gcc-11+, clang-18+, glibc 2.26+ compatibility

* Static library provided in addition to .so

* Intel(R) MKL linked within the shared library - no need for Intel(R) MKL in user environment

# SVS 0.0.7 Release Notes

## Additions and Changes
Expand Down
24 changes: 4 additions & 20 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,7 @@
# SVS 0.0.8 Release Notes
# SVS 0.0.9 Release Notes

## Additions and Changes

* Addition of 8-bit scalar quantization support to C++ interface

* Introduced multi-vector index and batch iterator support that allows multiple vectors to be mapped to the same external ID

* Automatic ISA dispatching with optimizations based on AVX support

* Enabled compatibility with ARM and MacOS

* Enhanced logging capabilities

* Updated vamana iterator API

* Broader [shared library](https://github.com/intel/ScalableVectorSearch/releases) support:

* gcc-11+, clang-18+, glibc 2.26+ compatibility

* Static library provided in addition to .so

* Intel(R) MKL linked within the shared library - no need for Intel(R) MKL in user environment
* fix: Multi-vector dynamic vamana index Save/Load functionality (#162)
* feature: save and load in flat index (#163)
* fix: Handle corner in dynamic index with insufficient valid search results (#164)
2 changes: 1 addition & 1 deletion bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

setup(
name="scalable-vs",
version="0.0.8",
version="0.0.9",
description="Scalable Vector Search (SVS) is a performance library for vector similarity search.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def tearDown(self):
#####

def test_version(self):
self.assertEqual(svs.library_version(), "v0.0.8")
self.assertEqual(svs.library_version(), "v0.0.9")

def test_conversion(self):
# signed
Expand Down
4 changes: 2 additions & 2 deletions tests/svs/lib/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ CATCH_TEST_CASE("Version Numbers", "[lib][versions]") {

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