Skip to content

Commit 29e5277

Browse files
author
TinySemVer
committed
Release: v2.25.2 [skip ci]
### Patch - Fix: Stale `build.rs` paths (#749) (f900b5a) - Improve: Exposing HNSW graph iterators to C++ & Rust (55c43f7) - Improve: Expose on-disk Index metadata in Rust (7f16323) - Make: Bump NumKong to 7.6 for Float8 speedups (16681be) - Fix: Restore 2D NDArray return for `Index.vectors` and `eval.self_recall` (13e2393) - Improve: Harden Python type hints (cdc7be6) - Make: Enforce "MinGW Makefiles" in CI (6cdc67e) - Fix: Index.get returns uninitialized memory for missing keys (22f76d3) - Make: Switch JNI Linux link to mold (bdcd45d)
1 parent e42b2dc commit 29e5277

11 files changed

Lines changed: 12 additions & 12 deletions

File tree

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "USearch: Smaller & Faster Similarity Search & Clustering Engine"
33
message: "If you use this software, please cite it as below."
44
type: software
55
license: Apache-2.0
6-
version: 2.25.1
6+
version: 2.25.2
77
doi: 10.5281/zenodo.7949416
88
repository-code: https://github.com/unum-cloud/USearch
99
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.25.1
6+
VERSION 2.25.2
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.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "Apache-2.0"
1212
name = "usearch"
1313
publish = true
1414
repository = "https://github.com/unum-cloud/USearch"
15-
version = "2.25.1"
15+
version = "2.25.2"
1616

1717
[features]
1818
default = ["numkong"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ doi = {10.5281/zenodo.7949416},
549549
author = {Vardanian, Ash},
550550
title = {{USearch by Unum Cloud}},
551551
url = {https://github.com/unum-cloud/USearch},
552-
version = {2.25.1},
552+
version = {2.25.2},
553553
year = {2026},
554554
}
555555
```

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.25.1
1+
2.25.2

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.25.1"
10+
version = "2.25.2"
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.25.1</Version>
4+
<Version Condition="'$(Version)' == ''">2.25.2</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
@@ -9,7 +9,7 @@
99

1010
#define USEARCH_VERSION_MAJOR 2
1111
#define USEARCH_VERSION_MINOR 25
12-
#define USEARCH_VERSION_PATCH 1
12+
#define USEARCH_VERSION_PATCH 2
1313

1414
// Inferring C++ version
1515
// https://stackoverflow.com/a/61552074

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.25.1'
22+
def usearchVersion = '2.25.2'
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.25.1', ext: 'jar'
41+
implementation name: 'usearch', version: '2.25.2', ext: 'jar'
4242
}
4343
```
4444

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.25.1",
3+
"version": "2.25.2",
44
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
55
"author": "Ash Vardanian (https://ashvardanian.com/)",
66
"license": "Apache 2.0",

0 commit comments

Comments
 (0)