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",