Skip to content

Commit 3535564

Browse files
authored
v0.0.10 update (#177)
1 parent a13184f commit 3535564

File tree

6 files changed

+25
-9
lines changed

6 files changed

+25
-9
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.9
26+
VERSION 0.0.10
2727
)
2828

2929
set(SVS_LIB svs_devel)

HISTORY.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# SVS 0.0.9 Release Notes
2+
3+
## Additions and Changes
4+
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)
8+
19
# SVS 0.0.8 Release Notes
210

311
## Additions and Changes

NEWS.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1-
# SVS 0.0.9 Release Notes
1+
# SVS 0.0.10 Release Notes
22

33
## Additions and Changes
44

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)
5+
* Support for OpenMP threading (#170, #171, #172)
6+
7+
* Enable Inverted File index (#156)
8+
9+
* Resolution of inf/nan crashes in LVQ (#174)
10+
11+
* SVS_LAZY update to address alpine issue (#175)
12+
13+
* Updates to build parameter defaults (#176)
14+
15+
* MKL symbols not exported from SVS libs

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.9",
41+
version="0.0.10",
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.9")
45+
self.assertEqual(svs.library_version(), "v0.0.10")
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, 9), "Version mismatch!");
50-
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 9));
49+
static_assert(svs::lib::svs_version == svs::lib::Version(0, 0, 10), "Version mismatch!");
50+
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 10));
5151
}

0 commit comments

Comments
 (0)