From 81799b6dd8cf28ac71873db7fec34ed85f381ce8 Mon Sep 17 00:00:00 2001 From: TinySemVer Date: Thu, 19 Sep 2024 02:54:15 +0000 Subject: [PATCH] Release: v5.4.1 [skip ci] --- CMakeLists.txt | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- VERSION | 2 +- include/simsimd/simsimd.h | 2 +- package.json | 2 +- setup.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index aa0daf42..66d55039 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) project( simsimd - VERSION 5.4.0 + VERSION 5.4.1 LANGUAGES C CXX DESCRIPTION "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm" HOMEPAGE_URL "https://github.com/ashvardanian/simsimd" diff --git a/Cargo.lock b/Cargo.lock index 844f5640..e889e486 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -496,7 +496,7 @@ dependencies = [ [[package]] name = "simsimd" -version = "5.4.0" +version = "5.4.1" dependencies = [ "cc", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 5bd7358f..63430c16 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 = "5.4.0" +version = "5.4.1" edition = "2021" license = "Apache-2.0" authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"] diff --git a/VERSION b/VERSION index 1e20ec35..04edabda 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.4.0 \ No newline at end of file +5.4.1 \ No newline at end of file diff --git a/include/simsimd/simsimd.h b/include/simsimd/simsimd.h index 26d1036c..beb262e1 100644 --- a/include/simsimd/simsimd.h +++ b/include/simsimd/simsimd.h @@ -88,7 +88,7 @@ #define SIMSIMD_VERSION_MAJOR 5 #define SIMSIMD_VERSION_MINOR 4 -#define SIMSIMD_VERSION_PATCH 0 +#define SIMSIMD_VERSION_PATCH 1 /** * @brief Removes compile-time dispatching, and replaces it with runtime dispatching. diff --git a/package.json b/package.json index 3bfef8c0..944c76b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simsimd", - "version": "5.4.0", + "version": "5.4.1", "description": "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm", "homepage": "https://github.com/ashvardanian/simsimd", "author": "Ash Vardanian", diff --git a/setup.py b/setup.py index fb6322a2..825d839b 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ __lib_name__ = "simsimd" -__version__ = "5.4.0" +__version__ = "5.4.1" compile_args = [] link_args = []