Skip to content

Commit ad86638

Browse files
author
TinySemVer
committed
Release: v4.4.0 [skip ci]
### Minor - Add: Fast path for Georgian case-folding (fa7422c) - Add: Case-insensitive ops for Python (d88e30a) - Add: Dispatch case-insensitive search (4ae91c0) - Add: Serial case-insensitive find & compare (4b18f05) ### Patch - Fix: Eszett hex parsing warnings in Clang (8b27080) - Fix: Avoid `__builtin` missing on MSVC (fdc95f3) - Fix: Uninitialized values warning (b84c83e) - Improve: Safer & faster case-folding on Ice Lake (bcd5d16) - Improve: Case-folding on Ice Lake (bb23b60) - Fix: Move Ice Lake kernels out of Haswell scope (b7cc2c4) - Improve: Rename functions towards `utf8_case*` (44fbb92) - Improve: Faster serial Unicode folding (aa1b21b) - Improve: Re-group folding by char-length (c3586e2) - Docs: Avoid locale-specific Unicode rules (333a778) - Docs: Emoji-free doc section titles (#284) (dc11b40)
1 parent ae307ab commit ad86638

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
@@ -45,7 +45,7 @@
4545
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
4646
project(
4747
stringzilla
48-
VERSION 4.3.0
48+
VERSION 4.4.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.3.0"
3+
version = "4.4.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.3.0
1+
4.4.0

include/stringzilla/stringzilla.h

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

6868
#define STRINGZILLA_H_VERSION_MAJOR 4
69-
#define STRINGZILLA_H_VERSION_MINOR 3
69+
#define STRINGZILLA_H_VERSION_MINOR 4
7070
#define STRINGZILLA_H_VERSION_PATCH 0
7171

7272
#include "types.h" // `sz_size_t`, `sz_bool_t`, `sz_ordering_t`

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.3.0",
3+
"version": "4.4.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)