Skip to content

Commit cc23bba

Browse files
author
TinySemVer
committed
Release: v2.26.0 [skip ci]
### Minor - Add: Expose `stats()` in Rust SDK (#768) (3713af9) - Add: Rust compact binding (#771) (749d03b) ### Patch - Make: Modernize CI toolchains, pin cibuildwheel (017fad3) - Fix: Reclaim `slot_lookup_` tombstones under churn (#769) (c6d634c) - Fix: Mix integer key hashes with SplitMix64 (#773) (9fc3500) - Make: Build JavaScript Windows x64 prebuilds (#774) (7240652) - Make: Bundle NumKong runtime with C# native artifacts (9c0ed29)
1 parent d92b549 commit cc23bba

11 files changed

Lines changed: 13 additions & 13 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.3
6+
version: 2.26.0
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.3
6+
VERSION 2.26.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.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.3"
15+
version = "2.26.0"
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.3},
552+
version = {2.26.0},
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.3
1+
2.26.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.25.3"
10+
version = "2.26.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.25.3</Version>
4+
<Version Condition="'$(Version)' == ''">2.26.0</Version>
55

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

include/usearch/index.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
#define UNUM_USEARCH_HPP
99

1010
#define USEARCH_VERSION_MAJOR 2
11-
#define USEARCH_VERSION_MINOR 25
12-
#define USEARCH_VERSION_PATCH 3
11+
#define USEARCH_VERSION_MINOR 26
12+
#define USEARCH_VERSION_PATCH 0
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.3'
22+
def usearchVersion = '2.26.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.25.3', ext: 'jar'
41+
implementation name: 'usearch', version: '2.26.0', 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.3",
3+
"version": "2.26.0",
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)