Skip to content

Commit

Permalink
Merge branch 'main-dev' of https://github.com/unum-cloud/usearch into…
Browse files Browse the repository at this point in the history
… main-dev
  • Loading branch information
ashvardanian committed Nov 30, 2023
2 parents 5d040ca + c2463ca commit 231e5f4
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Ash"
orcid: "https://orcid.org/0000-0002-4882-1815"
title: "USearch by Unum Cloud"
version: 2.8.13
version: 2.8.14
doi: 10.5281/zenodo.7949416
date-released: 2023-10-22
url: "https://github.com/unum-cloud/usearch"
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "usearch"
version = "2.8.13"
version = "2.8.14"
authors = ["Ash Vardanian <[email protected]>"]
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.8.13},
version = {2.8.14},
year = {2023},
month = oct,
}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8.13
2.8.14
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class USearchConan(ConanFile):

name = "usearch"
version = '2.8.13'
version = '2.8.14'
license = "Apache-2.0"
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
homepage = "https://github.com/unum-cloud/usearch"
Expand Down
2 changes: 1 addition & 1 deletion csharp/nuget/nuget-package.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version Condition="'$(Version)' == ''">2.8.13</Version>
<Version Condition="'$(Version)' == ''">2.8.14</Version>

<Authors>Unum</Authors>
<Company>Unum</Company>
Expand Down
2 changes: 1 addition & 1 deletion include/usearch/index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#define USEARCH_VERSION_MAJOR 2
#define USEARCH_VERSION_MINOR 8
#define USEARCH_VERSION_PATCH 13
#define USEARCH_VERSION_PATCH 14

// Inferring C++ version
// https://stackoverflow.com/a/61552074
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "usearch",
"version": "2.8.13",
"version": "2.8.14",
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
"author": "Ash Vardanian (https://ashvardanian.com/)",
"license": "Apache 2.0",
Expand Down
4 changes: 4 additions & 0 deletions python/lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -864,6 +864,10 @@ PYBIND11_MODULE(compiled, m) {
m.attr("USES_SIMSIMD") = py::int_(USEARCH_USE_SIMSIMD);
m.attr("USES_FP16LIB") = py::int_(USEARCH_USE_FP16LIB);

m.attr("VERSION_MAJOR") = py::int_(USEARCH_VERSION_MAJOR);
m.attr("VERSION_MINOR") = py::int_(USEARCH_VERSION_MINOR);
m.attr("VERSION_PATCH") = py::int_(USEARCH_VERSION_PATCH);

py::enum_<metric_punned_signature_t>(m, "MetricSignature")
.value("ArrayArray", metric_punned_signature_t::array_array_k)
.value("ArrayArraySize", metric_punned_signature_t::array_array_size_k);
Expand Down
7 changes: 7 additions & 0 deletions python/usearch/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from usearch.compiled import (
VERSION_MAJOR,
VERSION_MINOR,
VERSION_PATCH,
)

__version__ = f"{VERSION_MAJOR}.{VERSION_MINOR}.{VERSION_PATCH}"
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ def get_bool_env_w_name(name: str, preference: bool) -> tuple:
"include",
"python",
"stringzilla",
pa.get_include(),
]
if use_simsimd:
include_dirs.append("simsimd/include")
Expand Down
2 changes: 1 addition & 1 deletion simsimd
2 changes: 1 addition & 1 deletion wasmer.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name="unum/usearch"
version="2.8.13"
version="2.8.14"
description="Smaller & Faster Single-File Vector Search Engine from Unum"
license="Apache-2.0"
readme="README.md"
Expand Down

0 comments on commit 231e5f4

Please sign in to comment.