Skip to content

Commit 453290d

Browse files
authored
Docs: Fix broken links (#708)
1 parent 43ee8b7 commit 453290d

File tree

13 files changed

+28
-28
lines changed

13 files changed

+28
-28
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.22.0
8+
version: 2.23.0
99
doi: 10.5281/zenodo.7949416
1010
date-released: 2023-10-22
1111
url: "https://github.com/unum-cloud/usearch"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
cmake_minimum_required(VERSION 3.11 FATAL_ERROR)
44
project(
55
usearch
6-
VERSION 2.22.0
6+
VERSION 2.23.0
77
LANGUAGES C CXX
88
DESCRIPTION "Smaller & Faster Single-File Vector Search Engine from Unum"
99
HOMEPAGE_URL "https://github.com/unum-cloud/usearch"

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.22.0"
3+
version = "2.23.0"
44
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
55
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
66
edition = "2021"

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@ Similarity Search & Clustering Engine for <a href="https://github.com/ashvardani
2020
<p align="center">
2121
Spatial • Binary • Probabilistic • User-Defined Metrics
2222
<br/>
23-
<a href="https://unum-cloud.github.io/usearch/cpp">C++11</a> •
24-
<a href="https://unum-cloud.github.io/usearch/python">Python 3</a> •
25-
<a href="https://unum-cloud.github.io/usearch/javascript">JavaScript</a> •
26-
<a href="https://unum-cloud.github.io/usearch/java">Java</a> •
27-
<a href="https://unum-cloud.github.io/usearch/rust">Rust</a> •
28-
<a href="https://unum-cloud.github.io/usearch/c">C99</a> •
29-
<a href="https://unum-cloud.github.io/usearch/objective-c">Objective-C</a> •
30-
<a href="https://unum-cloud.github.io/usearch/swift">Swift</a> •
31-
<a href="https://unum-cloud.github.io/usearch/csharp">C#</a> •
32-
<a href="https://unum-cloud.github.io/usearch/golang">Go</a> •
33-
<a href="https://unum-cloud.github.io/usearch/wolfram">Wolfram</a>
23+
<a href="https://unum-cloud.github.io/USearch/cpp">C++11</a> •
24+
<a href="https://unum-cloud.github.io/USearch/python">Python 3</a> •
25+
<a href="https://unum-cloud.github.io/USearch/javascript">JavaScript</a> •
26+
<a href="https://unum-cloud.github.io/USearch/java">Java</a> •
27+
<a href="https://unum-cloud.github.io/USearch/rust">Rust</a> •
28+
<a href="https://unum-cloud.github.io/USearch/c">C99</a> •
29+
<a href="https://unum-cloud.github.io/USearch/objective-c">Objective-C</a> •
30+
<a href="https://unum-cloud.github.io/USearch/swift">Swift</a> •
31+
<a href="https://unum-cloud.github.io/USearch/csharp">C#</a> •
32+
<a href="https://unum-cloud.github.io/USearch/golang">Go</a> •
33+
<a href="https://unum-cloud.github.io/USearch/wolfram">Wolfram</a>
3434
<br/>
3535
Linux • macOS • Windows • iOS • Android • WebAssembly •
36-
<a href="https://unum-cloud.github.io/usearch/sqlite">SQLite</a>
36+
<a href="https://unum-cloud.github.io/USearch/sqlite">SQLite</a>
3737
</p>
3838

3939
<div align="center">
@@ -57,7 +57,7 @@ Linux • macOS • Windows • iOS • Android • WebAssembly •
5757
- ✅ Binary Tanimoto and Sorensen coefficients for [Genomics and Chemistry applications](#usearch--rdkit--molecular-search).
5858
- ✅ Space-efficient point-clouds with `uint40_t`, accommodating 4B+ size.
5959
- ✅ Compatible with OpenMP and custom "executors" for fine-grained parallelism.
60-
-[Semantic Search](#usearch--ai--multi-modal-semantic-search) and [Joins](#joins-one-to-one-one-to-many-and-many-to-many-mappings).
60+
-[Semantic Search](#usearch--uform--ucall--multimodal-semantic-search) and [Joins](#joins-one-to-one-one-to-many-and-many-to-many-mappings).
6161
- 🔄 Near-real-time [clustering and sub-clustering](#clustering) for Tens or Millions of clusters.
6262

6363
[faiss]: https://github.com/facebookresearch/faiss
@@ -195,7 +195,7 @@ When compared to FAISS's `IndexFlatL2` in Google Colab, __[USearch may offer up
195195

196196
While most vector search packages concentrate on just two metrics, "Inner Product distance" and "Euclidean distance", USearch allows arbitrary user-defined metrics.
197197
This flexibility allows you to customize your search for various applications, from computing geospatial coordinates with the rare [Haversine][haversine] distance to creating custom metrics for composite embeddings from multiple AI models, like joint image-text embeddings.
198-
You can use [Numba][numba], [Cppyy][cppyy], or [PeachPy][peachpy] to define your [custom metric even in Python](https://unum-cloud.github.io/usearch/python#user-defined-metrics-and-jit-in-python):
198+
You can use [Numba][numba], [Cppyy][cppyy], or [PeachPy][peachpy] to define your [custom metric even in Python](https://unum-cloud.github.io/USearch/python#user-defined-metrics-and-jit-in-python):
199199

200200
```py
201201
from numba import cfunc, types, carray
@@ -552,7 +552,7 @@ doi = {10.5281/zenodo.7949416},
552552
author = {Vardanian, Ash},
553553
title = {{USearch by Unum Cloud}},
554554
url = {https://github.com/unum-cloud/usearch},
555-
version = {2.22.0},
555+
version = {2.23.0},
556556
year = {2023},
557557
month = oct,
558558
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.22.0
1+
2.23.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.22.0"
10+
version = "2.23.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.22.0</Version>
4+
<Version Condition="'$(Version)' == ''">2.23.0</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
@@ -8,7 +8,7 @@
88
#define UNUM_USEARCH_HPP
99

1010
#define USEARCH_VERSION_MAJOR 2
11-
#define USEARCH_VERSION_MINOR 22
11+
#define USEARCH_VERSION_MINOR 23
1212
#define USEARCH_VERSION_PATCH 0
1313

1414
// Inferring C++ version

java/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repositories {
1919
// Task to download USearch JAR from GitHub releases
2020
task downloadUSearchJar {
2121
doLast {
22-
def usearchVersion = '2.22.0'
22+
def usearchVersion = '2.23.0'
2323
def usearchUrl = "https://github.com/unum-cloud/usearch/releases/download/v${usearchVersion}/usearch-${usearchVersion}.jar"
2424
def usearchFile = file("lib/usearch-${usearchVersion}.jar")
2525
@@ -38,7 +38,7 @@ compileJava.dependsOn downloadUSearchJar
3838
3939
dependencies {
4040
// USearch JAR from local lib directory (downloaded automatically)
41-
implementation name: 'usearch', version: '2.22.0', ext: 'jar'
41+
implementation name: 'usearch', version: '2.23.0', ext: 'jar'
4242
}
4343
```
4444

0 commit comments

Comments
 (0)