We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parenta2aeae4 commit13c3fd9Copy full SHA for 13c3fd9
CITATION.cff
@@ -5,7 +5,7 @@ authors:
5
given-names:"Ash"
6
orcid:"https://orcid.org/0000-0002-4882-1815"
7
title:"USearch by Unum Cloud"
8
-version:2.21.2
+version:2.21.3
9
doi:10.5281/zenodo.7949416
10
date-released:2023-10-22
11
url:"https://github.com/unum-cloud/usearch"
CMakeLists.txt
@@ -3,7 +3,7 @@
3
cmake_minimum_required(VERSION 3.11 FATAL_ERROR)
4
project(
usearch
-VERSION 2.21.2
+VERSION 2.21.3
LANGUAGES C CXX
DESCRIPTION"Smaller & Faster Single-File Vector Search Engine from Unum"
HOMEPAGE_URL"https://github.com/unum-cloud/usearch"
Cargo.lock
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name ="usearch"
-version ="2.21.2"
+version ="2.21.3"
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
description ="Smaller & Faster Single-File Vector Search Engine from Unum"
edition ="2021"
README.md
@@ -552,7 +552,7 @@ doi = {10.5281/zenodo.7949416},
552
author = {Vardanian, Ash},
553
title = {{USearch by Unum Cloud}},
554
url = {https://github.com/unum-cloud/usearch},
555
-version = {2.21.2},
+version = {2.21.3},
556
year = {2023},
557
month = oct,
558
}
VERSION
@@ -1 +1 @@
-2.21.2
+2.21.3
conanfile.py
@@ -7,7 +7,7 @@
classUSearchConan(ConanFile):
name="usearch"
-version="2.21.2"
+version="2.21.3"
license="Apache-2.0"
12
description="Smaller & Faster Single-File Vector Search Engine from Unum"
13
homepage="https://github.com/unum-cloud/usearch"
csharp/nuget/nuget-package.props
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
- <VersionCondition="'$(Version)' == ''">2.21.2</Version>
+ <VersionCondition="'$(Version)' == ''">2.21.3</Version>
<Authors>Unum</Authors>
<Company>Unum</Company>
include/usearch/index.hpp
@@ -9,7 +9,7 @@
#defineUSEARCH_VERSION_MAJOR2
#defineUSEARCH_VERSION_MINOR21
-#defineUSEARCH_VERSION_PATCH2
+#defineUSEARCH_VERSION_PATCH3
14
// Inferring C++ version
15
// https://stackoverflow.com/a/61552074
java/README.md
@@ -19,7 +19,7 @@ repositories {
19
// Task to download USearch JAR from GitHub releases
20
task downloadUSearchJar {
21
doLast {
22
- def usearchVersion = '2.21.2'
+ def usearchVersion = '2.21.3'
23
def usearchUrl = "https://github.com/unum-cloud/usearch/releases/download/v${usearchVersion}/usearch-${usearchVersion}.jar"
24
def usearchFile = file("lib/usearch-${usearchVersion}.jar")
25
@@ -38,7 +38,7 @@ compileJava.dependsOn downloadUSearchJar
38
39
dependencies {
40
// USearch JAR from local lib directory (downloaded automatically)
41
- implementation name: 'usearch', version: '2.21.2', ext: 'jar'
+ implementation name: 'usearch', version: '2.21.3', ext: 'jar'
42
43
```
44