From 3f224c34940e77ad864a47b5d4d3e3e77ad6a96f Mon Sep 17 00:00:00 2001 From: TinySemVer Date: Wed, 5 Feb 2025 11:36:44 +0000 Subject: [PATCH] Release: v6.3.1 [skip ci] ### Patch - Make: Update `release.yml` for Arm (d8c6f40) - Make: Use official Docker repo (48d39e3) - Make: Remove conflicting `containerd` on Arm (41e02f9) - Make: Install Docker on Aarch64 (636a22d) - Make: Avoid `extras` repo in `yum` on Aarch64 (aa5aced) - Fix: Wrong variable used in l2sq_bf16_sve (c26008b) - Make: Resolve Windows build conflicts (8e50840) --- CMakeLists.txt | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- VERSION | 2 +- include/simsimd/simsimd.h | 2 +- package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f606a84f..588056f5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14 FATAL_ERROR) project( simsimd - VERSION 6.3.0 + VERSION 6.3.1 LANGUAGES C CXX DESCRIPTION "Portable mixed-precision BLAS-like vector math library for x86 and ARM" HOMEPAGE_URL "https://github.com/ashvardanian/simsimd" diff --git a/Cargo.lock b/Cargo.lock index 0fbcaedd..8a724cff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -496,7 +496,7 @@ dependencies = [ [[package]] name = "simsimd" -version = "6.3.0" +version = "6.3.1" dependencies = [ "cc", "criterion", diff --git a/Cargo.toml b/Cargo.toml index acd7f9ca..47b973d7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "simsimd" description = "Portable mixed-precision BLAS-like vector math library for x86 and ARM" -version = "6.3.0" +version = "6.3.1" edition = "2021" license = "Apache-2.0" authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"] diff --git a/VERSION b/VERSION index e7e42a4b..39ee137b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.3.0 \ No newline at end of file +6.3.1 \ No newline at end of file diff --git a/include/simsimd/simsimd.h b/include/simsimd/simsimd.h index 79774818..a8cd0e29 100644 --- a/include/simsimd/simsimd.h +++ b/include/simsimd/simsimd.h @@ -90,7 +90,7 @@ #define SIMSIMD_VERSION_MAJOR 6 #define SIMSIMD_VERSION_MINOR 3 -#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 ea79475d..f34bc6a6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simsimd", - "version": "6.3.0", + "version": "6.3.1", "description": "Portable mixed-precision BLAS-like vector math library for x86 and ARM", "homepage": "https://github.com/ashvardanian/simsimd", "author": "Ash Vardanian",