Skip to content

Commit a4582ce

Browse files
author
TinySemVer
committed
Release: v4.2.2 [skip ci]
### Patch - Improve: LUTs in SVE (3d886d3) - Make: Linux cross-compile matching Release CI (524b0d7) - Fix: Check for Arm Neon support on windows (30320b7) - Make: Removed pyarrow from windows arms python tests (eab8c3c) - Make: Exclude KERNEL32.dll from stringzilla_bare checks (9edb804) - Make: Disabled SVE when using MSVC (04c985b) - Make: Use correct arch on windows for stringzillas/cuda (3fcd947) - Make: Updated target arch for windows tests. (e6460e1) - Fix: Disable windows min/max macros (00e902f) - Fix: Replace processthreadsapi.h with windows.h (f09e4f9) - Make: Expand CMAKE_HOST_SYSTEM_PROCESSOR (fe09f8d) - Make: Revert `--sysroot` cross-compile commands (579c82d) - Fix: Accessing `ARM64_CNTVCT` on Windows (5e6777d) - Make: Avoid redefining `arch=armv8.2-a` in pragmas (636147d) - Make: Expand CMAKE_HOST_SYSTEM_PROCESSOR (1f90f6c) - Make: Link to `libc++` in LLVM builds on MacOS (1c8b29b) - Make: Revert `_M_ARM64=1` flags for MSVC (25311a6) - Make: Enable Posix extensions for Python builds (9fe4f7c) - Make: Missing macros for `winnt.h(169)` C1189 error (8ef98a9) - Fix: Reading `mrs` w/out inline Asm on MSVC (d804c9f) - Make: Override `--sysroot` for "Cross Compile" builds (d3d901d) - Make: Use valid arch flags on MSVC (5aba122) - Make: Cross compile checks now correct for MSVC (7664f67) - Make: Windows arm now uses the correct compiler (7c2e9a0) - Make: cmake set ARCHIVE_OUTPUT_DIRECTORY to binary dir (f1ec210) - Make: Use ninja for windows deploy builds (0af43c8) - Make: Fixed Windows deploy (8ff2ad7) - Make: Include experimental Arm cross-compilation (4d86312)
1 parent 9eb57c9 commit a4582ce

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.2.1
48+
VERSION 4.2.2
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.2.1"
3+
version = "4.2.2"
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.2.1
1+
4.2.2

include/stringzilla/stringzilla.h

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

6868
#define STRINGZILLA_H_VERSION_MAJOR 4
6969
#define STRINGZILLA_H_VERSION_MINOR 2
70-
#define STRINGZILLA_H_VERSION_PATCH 1
70+
#define STRINGZILLA_H_VERSION_PATCH 2
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.2.1",
3+
"version": "4.2.2",
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)