From 42dd660f91e22453aee32d01570799062e8ad4c2 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 11 Apr 2024 04:32:42 +0000 Subject: [PATCH] Build: Released 2.11.4 [skip ci] ## [2.11.4](https://github.com/unum-cloud/usearch/compare/v2.11.3...v2.11.4) (2024-04-11) ### Fix * `#[repr(transparent)]` for `f16` and `b1x8` ([e182d77](https://github.com/unum-cloud/usearch/commit/e182d778dcc2236b48174a38fee19715ea2ec817)) * Non-native `f16` haversine ([c7922ff](https://github.com/unum-cloud/usearch/commit/c7922fffa5ace6386f1db40fb355a4b77224df76)) ### Make * Bump versions in `CMakeLists.txt` ([aadb717](https://github.com/unum-cloud/usearch/commit/aadb7178498b7063aa2e2c1020dfc13e170e0c8f)) * Rever WASI CI ([92e0b94](https://github.com/unum-cloud/usearch/commit/92e0b944da1c1d73324278a6bacf6f769d9efec3)) ### Test * Oversubscribed search ([7db0c39](https://github.com/unum-cloud/usearch/commit/7db0c3963bc2d63beffcf70e5b500a77d6e56a9c)), closes [#393](https://github.com/unum-cloud/usearch/issues/393) * Re-seed NumPy PRNG ([8de87df](https://github.com/unum-cloud/usearch/commit/8de87dfe903d7a4ced886bf8eca0c5c1f369fae3)) --- CITATION.cff | 2 +- CMakeLists.txt | 2 +- Cargo.toml | 2 +- README.md | 2 +- VERSION | 2 +- csharp/nuget/nuget-package.props | 2 +- include/usearch/index.hpp | 2 +- package.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 580d39bf..5e683dc4 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -5,7 +5,7 @@ authors: given-names: "Ash" orcid: "https://orcid.org/0000-0002-4882-1815" title: "USearch by Unum Cloud" -version: 2.11.3 +version: 2.11.4 doi: 10.5281/zenodo.7949416 date-released: 2023-10-22 url: "https://github.com/unum-cloud/usearch" diff --git a/CMakeLists.txt b/CMakeLists.txt index 40f73c05..4f149301 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.1) project( usearch - VERSION 2.11.2 + VERSION 2.11.4 LANGUAGES C CXX DESCRIPTION "Smaller & Faster Single-File Vector Search Engine from Unum" HOMEPAGE_URL "https://github.com/unum-cloud/usearch" diff --git a/Cargo.toml b/Cargo.toml index ae3025bd..e8fb4203 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usearch" -version = "2.11.3" +version = "2.11.4" authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"] description = "Smaller & Faster Single-File Vector Search Engine from Unum" edition = "2021" diff --git a/README.md b/README.md index fb45d351..a91e60bf 100644 --- a/README.md +++ b/README.md @@ -471,7 +471,7 @@ doi = {10.5281/zenodo.7949416}, author = {Vardanian, Ash}, title = {{USearch by Unum Cloud}}, url = {https://github.com/unum-cloud/usearch}, -version = {2.11.3}, +version = {2.11.4}, year = {2023}, month = oct, } diff --git a/VERSION b/VERSION index 22e3b6b0..7cd5929f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.11.3 +2.11.4 diff --git a/csharp/nuget/nuget-package.props b/csharp/nuget/nuget-package.props index 6fbb4032..82f9f160 100644 --- a/csharp/nuget/nuget-package.props +++ b/csharp/nuget/nuget-package.props @@ -1,7 +1,7 @@ - 2.11.3 + 2.11.4 Unum Unum diff --git a/include/usearch/index.hpp b/include/usearch/index.hpp index 29add2df..aabf7e6d 100644 --- a/include/usearch/index.hpp +++ b/include/usearch/index.hpp @@ -11,7 +11,7 @@ #define USEARCH_VERSION_MAJOR 2 #define USEARCH_VERSION_MINOR 11 -#define USEARCH_VERSION_PATCH 3 +#define USEARCH_VERSION_PATCH 4 // Inferring C++ version // https://stackoverflow.com/a/61552074 diff --git a/package.json b/package.json index 568a11cb..1eedac0e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "usearch", - "version": "2.11.3", + "version": "2.11.4", "description": "Smaller & Faster Single-File Vector Search Engine from Unum", "author": "Ash Vardanian (https://ashvardanian.com/)", "license": "Apache 2.0",