Skip to content

Commit

Permalink
Build: Released 2.8.12 [skip ci]
Browse files Browse the repository at this point in the history
## [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))
  • Loading branch information
semantic-release-bot committed Nov 13, 2023
1 parent 344acd5 commit c7e2391
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Ash"
orcid: "https://orcid.org/0000-0002-4882-1815"
title: "USearch by Unum Cloud"
version: 2.8.11
version: 2.8.12
doi: 10.5281/zenodo.7949416
date-released: 2023-10-22
url: "https://github.com/unum-cloud/usearch"
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "usearch"
version = "2.8.11"
version = "2.8.12"
authors = ["Ash Vardanian <[email protected]>"]
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.8.11},
version = {2.8.12},
year = {2023},
month = oct,
}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8.11
2.8.12
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class USearchConan(ConanFile):

name = "usearch"
version = '2.8.11'
version = '2.8.12'
license = "Apache-2.0"
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
homepage = "https://github.com/unum-cloud/usearch"
Expand Down
2 changes: 1 addition & 1 deletion csharp/nuget/nuget-package.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version Condition="'$(Version)' == ''">2.8.11</Version>
<Version Condition="'$(Version)' == ''">2.8.12</Version>

<Authors>Unum</Authors>
<Company>Unum</Company>
Expand Down
2 changes: 1 addition & 1 deletion include/usearch/index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#define USEARCH_VERSION_MAJOR 2
#define USEARCH_VERSION_MINOR 8
#define USEARCH_VERSION_PATCH 11
#define USEARCH_VERSION_PATCH 12

// Inferring C++ version
// https://stackoverflow.com/a/61552074
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "usearch",
"version": "2.8.11",
"version": "2.8.12",
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
"author": "Ash Vardanian (https://ashvardanian.com/)",
"license": "Apache 2.0",
Expand Down
2 changes: 1 addition & 1 deletion wasmer.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name="unum/usearch"
version="2.8.11"
version="2.8.12"
description="Smaller & Faster Single-File Vector Search Engine from Unum"
license="Apache-2.0"
readme="README.md"
Expand Down

0 comments on commit c7e2391

Please sign in to comment.