Skip to content

Commit 6e843db

Browse files
author
TinySemVer
committed
Release: v6.5.9 [skip ci]
### Patch - Make: Deno `--no-check` for CI (9976b88) - Fix: CMake relative paths for Termux compatibility (#288) (07976ad) - Make: NPM w/out `NODE_AUTH_TOKEN` (63cd55b) - Fix: Length check in `jaccard_b8_ice` and `hamming_b8_ice` (#286) (a7cc7e1) - Make: Python 3.14 builds (#271) (e4d62e7) - Fix: Avoid `sqrt(0)` in `probability.h` (108a8b5) - Fix: `u64size` in Rust to match the C ABI (31195e9) - Make: Stack-realign for `i386` builds (5a386f5) - Make: 32-bit cross-compilation for Rust (f473b2b) - Fix: Gating `core::fmt` in Rust (0709860)
1 parent 637a8a7 commit 6e843db

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
33
project(
44
simsimd
5-
VERSION 6.5.8
5+
VERSION 6.5.9
66
LANGUAGES C CXX
77
DESCRIPTION "Portable mixed-precision BLAS-like vector math library for x86 and ARM"
88
HOMEPAGE_URL "https://github.com/ashvardanian/simsimd"

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "simsimd"
33
description = "Portable mixed-precision BLAS-like vector math library for x86 and ARM"
4-
version = "6.5.8"
4+
version = "6.5.9"
55
edition = "2021"
66
license = "Apache-2.0"
77
authors = ["Ash Vardanian <[email protected]>"]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.5.8
1+
6.5.9

include/simsimd/simsimd.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191

9292
#define SIMSIMD_VERSION_MAJOR 6
9393
#define SIMSIMD_VERSION_MINOR 5
94-
#define SIMSIMD_VERSION_PATCH 8
94+
#define SIMSIMD_VERSION_PATCH 9
9595

9696
/**
9797
* @brief Removes compile-time dispatching, and replaces it with runtime dispatching.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "simsimd",
3-
"version": "6.5.8",
3+
"version": "6.5.9",
44
"description": "Portable mixed-precision BLAS-like vector math library for x86 and ARM",
55
"homepage": "https://github.com/ashvardanian/simsimd",
66
"author": "Ash Vardanian",

0 commit comments

Comments
 (0)