From 127ead1da7c39957b30a50dd85e74814edb022d6 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 31 Mar 2024 21:51:31 +0000 Subject: [PATCH] Build: Released 4.2.2 [skip ci] ## [4.2.2](https://github.com/ashvardanian/SimSIMD/compare/v4.2.1...v4.2.2) (2024-03-31) ### Fix * `f16` casting on Arm ([dda096b](https://github.com/ashvardanian/SimSIMD/commit/dda096bff77cabd53aef1f45f8bbc8bbf7c7c890)) * Dot-products compilation on SVE ([f5fe36d](https://github.com/ashvardanian/SimSIMD/commit/f5fe36d1716a032433f1704e0811e9ac95350673)) ### Make * Test with Bun and Deno ([3227b87](https://github.com/ashvardanian/SimSIMD/commit/3227b8751a4d13075fe04a6711e619d2b0c622c6)) --- CMakeLists.txt | 2 +- Cargo.toml | 2 +- VERSION | 2 +- include/simsimd/simsimd.h | 2 +- package.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 280abc7d..6b86cc06 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) project( simsimd - VERSION 4.2.1 + VERSION 4.2.2 LANGUAGES C CXX DESCRIPTION "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm" diff --git a/Cargo.toml b/Cargo.toml index c697dc77..77b97060 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "simsimd" description = "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm" -version = "4.2.1" +version = "4.2.2" edition = "2021" license = "Apache-2.0" authors = [ diff --git a/VERSION b/VERSION index fae6e3d0..af8c8ec7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2.1 +4.2.2 diff --git a/include/simsimd/simsimd.h b/include/simsimd/simsimd.h index e9dcd70c..97b7dd52 100644 --- a/include/simsimd/simsimd.h +++ b/include/simsimd/simsimd.h @@ -16,7 +16,7 @@ #define SIMSIMD_VERSION_MAJOR 4 #define SIMSIMD_VERSION_MINOR 2 -#define SIMSIMD_VERSION_PATCH 1 +#define SIMSIMD_VERSION_PATCH 2 /** * @brief Removes compile-time dispatching, and replaces it with runtime dispatching. diff --git a/package.json b/package.json index d5847876..68e6b53c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simsimd", - "version": "4.2.1", + "version": "4.2.2", "description": "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm", "homepage": "https://github.com/ashvardanian/simsimd", "author": "Ash Vardanian",