Skip to content

Commit d88aec8

Browse files
authored
Update to v0.0.11 (#230)
1 parent 1ee40bf commit d88aec8

File tree

6 files changed

+24
-16
lines changed

6 files changed

+24
-16
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.10
26+
VERSION 0.0.11
2727
)
2828

2929
set(SVS_LIB svs_devel)

HISTORY.md

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

319
## Additions and Changes

NEWS.md

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

33
## Additions and Changes
44

5-
* Support for OpenMP threading (#170, #171, #172)
5+
IVF support for SQDataset (#184), LVQ, and LeanVec
66

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
7+
Various bug resolutions, fixes, and tooling support

bindings/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040

4141
setup(
4242
name="scalable-vs",
43-
version="0.0.10",
43+
version="0.0.11",
4444
description="Scalable Vector Search (SVS) is a performance library for vector similarity search.",
4545
long_description=long_description,
4646
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.10")
45+
self.assertEqual(svs.library_version(), "v0.0.11")
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
@@ -47,7 +47,7 @@ CATCH_TEST_CASE("Version Numbers", "[lib][versions]") {
4747
// Keep in-sync with CMakeLists.txt
4848
CATCH_TEST_CASE("Global Version", "[lib][versions]") {
4949
static_assert(
50-
svs::lib::svs_version == svs::lib::Version(0, 0, 10), "Version mismatch!"
50+
svs::lib::svs_version == svs::lib::Version(0, 0, 11), "Version mismatch!"
5151
);
52-
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 10));
52+
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 11));
5353
}

0 commit comments

Comments
 (0)