diff --git a/CMakeLists.txt b/CMakeLists.txt index 33270054..b679b1c5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/HISTORY.md b/HISTORY.md index 8b78adc8..7ed9e615 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/NEWS.md b/NEWS.md index e4559a2c..045ecb2c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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 diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 76fb46fb..5b18a450 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -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", diff --git a/bindings/python/tests/test_common.py b/bindings/python/tests/test_common.py index d659914e..b2bcfb6b 100644 --- a/bindings/python/tests/test_common.py +++ b/bindings/python/tests/test_common.py @@ -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 diff --git a/tests/svs/lib/version.cpp b/tests/svs/lib/version.cpp index ef7fbfe9..320cff84 100644 --- a/tests/svs/lib/version.cpp +++ b/tests/svs/lib/version.cpp @@ -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)); }