Skip to content

Commit 40b3758

Browse files
author
TinySemVer
committed
Release: v4.0.12 [skip ci]
### Patch - Make: Mutually exclusive platform flags (773d959) - Fix: Skip `to_device` tests w/out GPUs found (d701592) - Make: Propagate `SZ_TARGET` into `CIBW` env (b222e82) - Improve: Avoid `realloc` for on-GPU views (77e67cf) - Docs: Zero-copy Rust `compute_into` API with StringTape (f4ad81e) - Improve: Validate `to_device(Strs)` for unicode (f3c5357) - Improve: Pre-send to GPU with `to_device` (c78cd21) - Fix: Same `Strs` slicing as in StringTape (b4f8d12)
1 parent 773d959 commit 40b3758

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
4444
project(
4545
stringzilla
46-
VERSION 4.0.11
46+
VERSION 4.0.12
4747
LANGUAGES C CXX ASM
4848
DESCRIPTION "Search, hash, sort, fingerprint, and fuzzy-match strings faster via SWAR, SIMD, and GPGPU"
4949
HOMEPAGE_URL "https://github.com/ashvardanian/stringzilla"

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,6 +1,6 @@
11
[package]
22
name = "stringzilla"
3-
version = "4.0.11"
3+
version = "4.0.12"
44
authors = ["Ash Vardanian <[email protected]>"]
55
description = "Search, hash, sort, fingerprint, and fuzzy-match strings faster via SWAR, SIMD, and GPGPU"
66
edition = "2021"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.11
1+
4.0.12

include/stringzilla/stringzilla.h

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

6767
#define STRINGZILLA_H_VERSION_MAJOR 4
6868
#define STRINGZILLA_H_VERSION_MINOR 0
69-
#define STRINGZILLA_H_VERSION_PATCH 11
69+
#define STRINGZILLA_H_VERSION_PATCH 12
7070

7171
#include "types.h" // `sz_size_t`, `sz_bool_t`, `sz_ordering_t`
7272
#include "compare.h" // `sz_equal`, `sz_order`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stringzilla",
3-
"version": "4.0.11",
3+
"version": "4.0.12",
44
"description": "Search, hash, sort, fingerprint, and fuzzy-match strings faster via SWAR, SIMD, and GPGPU",
55
"author": "Ash Vardanian",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)