From f459c682e6d31447b1f8ce301d639a06c306e910 Mon Sep 17 00:00:00 2001 From: TinySemVer Date: Mon, 14 Oct 2024 05:17:23 +0000 Subject: [PATCH] Release: v5.7.0 [skip ci] --- CMakeLists.txt | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- VERSION | 2 +- include/simsimd/simsimd.h | 4 ++-- package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b4213ac9..06b5cea2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) project( simsimd - VERSION 5.6.4 + VERSION 5.7.0 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 c40ae71f..e3a528e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -496,7 +496,7 @@ dependencies = [ [[package]] name = "simsimd" -version = "5.6.4" +version = "5.7.0" dependencies = [ "cc", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 69ce7435..3b7edcaa 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.6.4" +version = "5.7.0" edition = "2021" license = "Apache-2.0" authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"] diff --git a/VERSION b/VERSION index 2a06a418..3b867ccd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.6.4 \ No newline at end of file +5.7.0 \ No newline at end of file diff --git a/include/simsimd/simsimd.h b/include/simsimd/simsimd.h index a0415af7..5ccf517f 100644 --- a/include/simsimd/simsimd.h +++ b/include/simsimd/simsimd.h @@ -89,8 +89,8 @@ #define SIMSIMD_H #define SIMSIMD_VERSION_MAJOR 5 -#define SIMSIMD_VERSION_MINOR 6 -#define SIMSIMD_VERSION_PATCH 4 +#define SIMSIMD_VERSION_MINOR 7 +#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 67d5c8e1..7e91b3cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simsimd", - "version": "5.6.4", + "version": "5.7.0", "description": "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm", "homepage": "https://github.com/ashvardanian/simsimd", "author": "Ash Vardanian",