Skip to content

Commit c7e2391

Browse files
Build: Released 2.8.12 [skip ci]
## [2.8.12](v2.8.11...v2.8.12) (2023-11-13) ### Docs * Typo in Java README (#307) ([494b9f0](494b9f0)), closes [#307](#307) * Update Java's step-by-step build instructions (#306) ([63d8027](63d8027)), closes [#306](#306) ### Fix * Dumping to uninitialized memory in Java ([9eaa10d](9eaa10d)) * Key type mismatch in Java ([25dc6fc](25dc6fc)) * Normalize bit-vector length for SimSIMD (#311) ([8a77b3e](8a77b3e)), closes [#311](#311) * OOM error in Java ([2589979](2589979)), closes [#308](#308) ### Improve * TypeScript annotations (#309) ([6a5e009](6a5e009)), closes [#309](#309) ### Make * Trace used compiler ([7d17eab](7d17eab))
1 parent 344acd5 commit c7e2391

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

CITATION.cff

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

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "usearch"
3-
version = "2.8.11"
3+
version = "2.8.12"
44
authors = ["Ash Vardanian <[email protected]>"]
55
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
66
edition = "2021"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ doi = {10.5281/zenodo.7949416},
424424
author = {Vardanian, Ash},
425425
title = {{USearch by Unum Cloud}},
426426
url = {https://github.com/unum-cloud/usearch},
427-
version = {2.8.11},
427+
version = {2.8.12},
428428
year = {2023},
429429
month = oct,
430430
}

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.8.11
1+
2.8.12

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class USearchConan(ConanFile):
88

99
name = "usearch"
10-
version = '2.8.11'
10+
version = '2.8.12'
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

+1-1
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.8.11</Version>
4+
<Version Condition="'$(Version)' == ''">2.8.12</Version>
55

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

include/usearch/index.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#define USEARCH_VERSION_MAJOR 2
1313
#define USEARCH_VERSION_MINOR 8
14-
#define USEARCH_VERSION_PATCH 11
14+
#define USEARCH_VERSION_PATCH 12
1515

1616
// Inferring C++ version
1717
// https://stackoverflow.com/a/61552074

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "usearch",
3-
"version": "2.8.11",
3+
"version": "2.8.12",
44
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
55
"author": "Ash Vardanian (https://ashvardanian.com/)",
66
"license": "Apache 2.0",

wasmer.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="unum/usearch"
3-
version="2.8.11"
3+
version="2.8.12"
44
description="Smaller & Faster Single-File Vector Search Engine from Unum"
55
license="Apache-2.0"
66
readme="README.md"

0 commit comments

Comments
 (0)