Skip to content

Commit 231e5f4

Browse files
committed
Merge branch 'main-dev' of https://github.com/unum-cloud/usearch into main-dev
2 parents 5d040ca + c2463ca commit 231e5f4

File tree

13 files changed

+21
-11
lines changed

13 files changed

+21
-11
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.13
8+
version: 2.8.14
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.13"
3+
version = "2.8.14"
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
@@ -433,7 +433,7 @@ doi = {10.5281/zenodo.7949416},
433433
author = {Vardanian, Ash},
434434
title = {{USearch by Unum Cloud}},
435435
url = {https://github.com/unum-cloud/usearch},
436-
version = {2.8.13},
436+
version = {2.8.14},
437437
year = {2023},
438438
month = oct,
439439
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.13
1+
2.8.14

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.13'
10+
version = '2.8.14'
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.13</Version>
4+
<Version Condition="'$(Version)' == ''">2.8.14</Version>
55

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

include/usearch/index.hpp

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

1212
#define USEARCH_VERSION_MAJOR 2
1313
#define USEARCH_VERSION_MINOR 8
14-
#define USEARCH_VERSION_PATCH 13
14+
#define USEARCH_VERSION_PATCH 14
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.13",
3+
"version": "2.8.14",
44
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
55
"author": "Ash Vardanian (https://ashvardanian.com/)",
66
"license": "Apache 2.0",

python/lib.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -864,6 +864,10 @@ PYBIND11_MODULE(compiled, m) {
864864
m.attr("USES_SIMSIMD") = py::int_(USEARCH_USE_SIMSIMD);
865865
m.attr("USES_FP16LIB") = py::int_(USEARCH_USE_FP16LIB);
866866

867+
m.attr("VERSION_MAJOR") = py::int_(USEARCH_VERSION_MAJOR);
868+
m.attr("VERSION_MINOR") = py::int_(USEARCH_VERSION_MINOR);
869+
m.attr("VERSION_PATCH") = py::int_(USEARCH_VERSION_PATCH);
870+
867871
py::enum_<metric_punned_signature_t>(m, "MetricSignature")
868872
.value("ArrayArray", metric_punned_signature_t::array_array_k)
869873
.value("ArrayArraySize", metric_punned_signature_t::array_array_size_k);

python/usearch/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from usearch.compiled import (
2+
VERSION_MAJOR,
3+
VERSION_MINOR,
4+
VERSION_PATCH,
5+
)
6+
7+
__version__ = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}"

0 commit comments

Comments
 (0)