From faacb1c6614a8f5313c3b4e4be0ff5490a1e6f02 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 8 Apr 2024 18:11:52 +0000 Subject: [PATCH] Build: Released 4.3.0 [skip ci] # [4.3.0](https://github.com/ashvardanian/SimSIMD/compare/v4.2.2...v4.3.0) (2024-04-08) ### Add * `toBinary` for JavaScript ([1f1fd3a](https://github.com/ashvardanian/SimSIMD/commit/1f1fd3a079c3e0f74e381361b6e50295ec0d00fe)) ### Improve * Procedural Rust benchmarks ([e01ec6c](https://github.com/ashvardanian/SimSIMD/commit/e01ec6cf45bf35f1ebc7469c41bb3053ec4714c0)) * Unrolled Rust benchmarks (#108) ([508e7a0](https://github.com/ashvardanian/SimSIMD/commit/508e7a0d6fdb55d06a1f979bc5f82ed080d181ea)), closes [#108](https://github.com/ashvardanian/SimSIMD/issues/108) --- CMakeLists.txt | 2 +- Cargo.toml | 2 +- VERSION | 2 +- include/simsimd/simsimd.h | 4 ++-- package.json | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) 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",