Skip to content

Commit f421b09

Browse files
authored
v0.1.0 update (#250)
1 parent df5a3c0 commit f421b09

File tree

7 files changed

+25
-11
lines changed

7 files changed

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

2929
set(SVS_LIB svs_devel)

HISTORY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# SVS 0.0.11 Release Notes
2+
3+
## Additions and Changes
4+
5+
* IVF support for SQDataset (#184), LVQ, and LeanVec
6+
7+
* Added shared library support for gcc-14+
8+
9+
* Various bug resolutions, fixes, and tooling support
10+
111
# SVS 0.0.10 Release Notes
212

313
## Additions and Changes

NEWS.md

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

33
## Additions and Changes
44

5-
IVF support for SQDataset (#184), LVQ, and LeanVec
5+
* Creation of SVS C++ Runtime Bindings package (#208)
66

7-
Various bug resolutions, fixes, and tooling support
7+
* Addition of `libsvs` conda and python packages along with existing tarballs
8+
9+
* Added shared library support for Clang-20
10+
11+
* LVQ8x8 support added to SVS python package
12+
13+
* Fixes related to VamanaBuildParameters (#237) and unmasked AVX2 load (#239)

bindings/cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# limitations under the License.
1414

1515
cmake_minimum_required(VERSION 3.21)
16-
project(svs_runtime VERSION 0.0.11 LANGUAGES CXX)
16+
project(svs_runtime VERSION 0.1.0 LANGUAGES CXX)
1717
set(TARGET_NAME svs_runtime)
1818

1919
set(SVS_RUNTIME_HEADERS

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.11",
43+
version="0.1.0",
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.11")
45+
self.assertEqual(svs.library_version(), "v0.1.0")
4646

4747
def test_conversion(self):
4848
# signed

tests/svs/lib/version.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +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(
50-
svs::lib::svs_version == svs::lib::Version(0, 0, 11), "Version mismatch!"
51-
);
52-
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 0, 11));
49+
static_assert(svs::lib::svs_version == svs::lib::Version(0, 1, 0), "Version mismatch!");
50+
CATCH_REQUIRE(svs::lib::svs_version == svs::lib::Version(0, 1, 0));
5351
}

0 commit comments

Comments
 (0)