Skip to content

Commit d126d12

Browse files
author
TinySemVer
committed
Release: v4.6.0 [skip ci]
### Minor - Add: Georgian fast path (e02cb00) ### Patch - Fix: `inline static` warnings with C++23 modules (#287) (374adbf) - Improve: Reduce startup overhead for `sz_find_byteset_haswell` (#293) (7f2899a) - Fix: Missing Georgian dispatch (5f91e7e) - Improve: Drop stack-protection in hashing on GCC (23801e4) - Improve: Reduce repeated reviews (2e5784b) - Improve: Faster `sz_size_bit_ceil` (4003057) - Improve: Avoid ZMM-to-stack spill in Skylake comparisons (d94a010) - Make: Use relative install path for C sources (690d775)
1 parent a296292 commit d126d12

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
@@ -45,7 +45,7 @@
4545
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
4646
project(
4747
stringzilla
48-
VERSION 4.5.1
48+
VERSION 4.6.0
4949
LANGUAGES C CXX ASM
5050
DESCRIPTION "Search, hash, sort, fingerprint, and fuzzy-match strings faster via SWAR, SIMD, and GPGPU"
5151
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.5.1"
3+
version = "4.6.0"
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.5.1
1+
4.6.0

include/stringzilla/stringzilla.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
#define STRINGZILLA_H_
6767

6868
#define STRINGZILLA_H_VERSION_MAJOR 4
69-
#define STRINGZILLA_H_VERSION_MINOR 5
70-
#define STRINGZILLA_H_VERSION_PATCH 1
69+
#define STRINGZILLA_H_VERSION_MINOR 6
70+
#define STRINGZILLA_H_VERSION_PATCH 0
7171

7272
#include "types.h" // `sz_size_t`, `sz_bool_t`, `sz_ordering_t`
7373
#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.5.1",
3+
"version": "4.6.0",
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)