Skip to content

Commit 652eb7f

Browse files
author
TinySemVer
committed
Release: v6.5.0 [skip ci]
### Minor - Add: Half-precision converters for C/Rust (bf5a7d2) ### Patch - Improve: Support more numeric operators in Rust (1d7b2b8) - Improve: Rust `nostd` builds (c6c0698) - Make: Bump dependencies (3667313) - Fix: Expose `Distance` in Rust (e0c69c7)
1 parent 570041c commit 652eb7f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
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.4.10
5+
VERSION 6.5.0
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.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.4.10"
4+
version = "6.5.0"
55
edition = "2021"
66
license = "Apache-2.0"
77
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.4.10
1+
6.5.0

include/simsimd/simsimd.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888
#define SIMSIMD_H
8989

9090
#define SIMSIMD_VERSION_MAJOR 6
91-
#define SIMSIMD_VERSION_MINOR 4
92-
#define SIMSIMD_VERSION_PATCH 10
91+
#define SIMSIMD_VERSION_MINOR 5
92+
#define SIMSIMD_VERSION_PATCH 0
9393

9494
/**
9595
* @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.4.10",
3+
"version": "6.5.0",
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)