Skip to content
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.9
VERSION 0.0.10
)

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

## Additions and Changes

* 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)

# SVS 0.0.8 Release Notes

## Additions and Changes
Expand Down
16 changes: 12 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# SVS 0.0.9 Release Notes
# SVS 0.0.10 Release Notes

## Additions and Changes

* 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)
* Support for OpenMP threading (#170, #171, #172)

* Enable Inverted File index (#156)

* Resolution of inf/nan crashes in LVQ (#174)

* SVS_LAZY update to address alpine issue (#175)

* Updates to build parameter defaults (#176)

* MKL symbols not exported from SVS libs
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.9",
version="0.0.10",
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.9")
self.assertEqual(svs.library_version(), "v0.0.10")

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, 9), "Version mismatch!");
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 9));
static_assert(svs::lib::svs_version == svs::lib::Version(0, 0, 10), "Version mismatch!");
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 10));
}
Loading