Skip to content

Commit f38784b

Browse files
Build: Released 2.9.0 [skip ci]
# [2.9.0](v2.8.16...v2.9.0) (2024-02-22) ### Add * SQLite binding ([222de55](222de55)) * String distances to SQLite ([ae4d0f0](ae4d0f0)) ### Docs * Header refreshed ([7465c29](7465c29)) * Py and SQLite extensions ([550624b](550624b)) * README.md link to Joins (#327) ([1279c54](1279c54)), closes [#327](#327) ### Fix * bug reports were immediately marked invalid ([c5fc825](c5fc825)) * Error handling, mem safety bugs #335 (#339) ([4747ef4](4747ef4)), closes [#335](#335) [#339](#339) * Passing SQLite tests ([6334983](6334983)) * Reported number of levels ([9b1a06a](9b1a06a)) * Skip non-Linux SQLite tests ([b02d262](b02d262)) * SQLite cosine function + tests ([55464fb](55464fb)) * undefined var error in `remove` api ([8d86a9e](8d86a9e)) ### Improve * Multi property lookup ([e8bf02c](e8bf02c)) * Support multi-column vectors ([66f1716](66f1716)) ### Make * `npi ci` (#330) ([5680920](5680920)), closes [#330](#330) * Add 3.12 wheels ([d66f697](d66f697)) * Change include paths ([21db294](21db294)) * invalid C++17 Clang arg ([2a6d779](2a6d779)) * Link libpthread for older Linux GCC builds (#324) ([6f1e5dd](6f1e5dd)), closes [#324](#324) * Parallel CI for Python wheels ([a9ad89e](a9ad89e)) * Upgrade SimSIMD & StringZilla ([5481bdf](5481bdf)) ### Revert * Postpone Apache Arrow integration ([5d040ca](5d040ca))
1 parent 4f7d745 commit f38784b

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Ash"
66
orcid: "https://orcid.org/0000-0002-4882-1815"
77
title: "USearch by Unum Cloud"
8-
version: 2.8.16
8+
version: 2.9.0
99
doi: 10.5281/zenodo.7949416
1010
date-released: 2023-10-22
1111
url: "https://github.com/unum-cloud/usearch"

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "usearch"
3-
version = "2.8.16"
3+
version = "2.9.0"
44
authors = ["Ash Vardanian <[email protected]>"]
55
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
66
edition = "2021"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ doi = {10.5281/zenodo.7949416},
434434
author = {Vardanian, Ash},
435435
title = {{USearch by Unum Cloud}},
436436
url = {https://github.com/unum-cloud/usearch},
437-
version = {2.8.16},
437+
version = {2.9.0},
438438
year = {2023},
439439
month = oct,
440440
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.16
1+
2.9.0

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class USearchConan(ConanFile):
88

99
name = "usearch"
10-
version = '2.8.16'
10+
version = '2.9.0'
1111
license = "Apache-2.0"
1212
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
1313
homepage = "https://github.com/unum-cloud/usearch"

csharp/nuget/nuget-package.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project>
33
<PropertyGroup>
4-
<Version Condition="'$(Version)' == ''">2.8.16</Version>
4+
<Version Condition="'$(Version)' == ''">2.9.0</Version>
55

66
<Authors>Unum</Authors>
77
<Company>Unum</Company>

include/usearch/index.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#define UNUM_USEARCH_HPP
1111

1212
#define USEARCH_VERSION_MAJOR 2
13-
#define USEARCH_VERSION_MINOR 8
14-
#define USEARCH_VERSION_PATCH 16
13+
#define USEARCH_VERSION_MINOR 9
14+
#define USEARCH_VERSION_PATCH 0
1515

1616
// Inferring C++ version
1717
// https://stackoverflow.com/a/61552074

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "usearch",
3-
"version": "2.8.16",
3+
"version": "2.9.0",
44
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
55
"author": "Ash Vardanian (https://ashvardanian.com/)",
66
"license": "Apache 2.0",

wasmer.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="unum/usearch"
3-
version="2.8.16"
3+
version="2.9.0"
44
description="Smaller & Faster Single-File Vector Search Engine from Unum"
55
license="Apache-2.0"
66
readme="README.md"

0 commit comments

Comments
 (0)