diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b86cc06..c9021d40 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) project( simsimd - VERSION 4.2.2 + VERSION 4.3.0 LANGUAGES C CXX DESCRIPTION "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm" diff --git a/Cargo.toml b/Cargo.toml index c06d1435..a31d7d61 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.2" +version = "4.3.0" edition = "2021" license = "Apache-2.0" authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"] diff --git a/VERSION b/VERSION index af8c8ec7..80895903 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.2.2 +4.3.0 diff --git a/include/simsimd/simsimd.h b/include/simsimd/simsimd.h index 97b7dd52..b85f0c37 100644 --- a/include/simsimd/simsimd.h +++ b/include/simsimd/simsimd.h @@ -15,8 +15,8 @@ #define SIMSIMD_H #define SIMSIMD_VERSION_MAJOR 4 -#define SIMSIMD_VERSION_MINOR 2 -#define SIMSIMD_VERSION_PATCH 2 +#define SIMSIMD_VERSION_MINOR 3 +#define SIMSIMD_VERSION_PATCH 0 /** * @brief Removes compile-time dispatching, and replaces it with runtime dispatching. diff --git a/package.json b/package.json index 68e6b53c..8149e35d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simsimd", - "version": "4.2.2", + "version": "4.3.0", "description": "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm", "homepage": "https://github.com/ashvardanian/simsimd", "author": "Ash Vardanian",