Skip to content

Commit cc3314d

Browse files
author
TinySemVer
committed
Release: v4.2.1 [skip ci]
### Patch - Make: Removed rand/free/malloc stubs when avoiding libc (0148282) - Make: Deploy stringzilla_bare for windows (e4ddce8) - Make: Added .lib file to uploaded windows archives (2dc6936) - Make: Add MSVC bare builds back (5cc5f01) - Make: Added stringzilla_bare checks (bbc5cca) - Fix: Avoid unused POSIX extensions on macOS (aeb06a5) - Make: Deprecate old cross-compilation scripts (2f34c2d) - Improve: Drop `-pedantic` for POSIX extensions (e99d557) - Make: Pre-define CMake properties, like `-lpthread` and pointer size (7722bb1) - Improve: `serialize_capability` for Ice Lake on Clang (58f8cf9) - Make: Skip compiler checks for cross-compilation (60988f3) - Fix: Unused `capabilities` in Arm macOS builds (511a09e) - Docs: Listing `./scripts` and StringWars (5af84dd) - Make: Pass `-D CMAKE_SYSROOT` in cross-compiling CI (a26fc73) - Fix: Suppress unused `alloc` warnings (4868d7f) - Make: Reduce CMake nesting (dda024d) - Make: Propagate cross-compilation settings (5070321) - Improve: Detect NEON+SHA+AES via WinAPI (3b175f8) - Fix: Probe `mrs` for avoid `SIGILL` on older Arm (d2f8e97) - Fix: Isolate & skip SHA-256 tests in Go with GCC (0874b13) - Fix: Deprecates `sz_checksum` (97f9ecf) - Make: More aggressive inlining (e8f33c1) - Make: Uniform hardware specs logging (f826dfc) - Improve: Expose `Capabilities` to GoLang (5f2cc97) - Improve: Branchless serial SHA-256 block processor (fe7efe2) - Fix: Missing modulo in SHA #254 (5a513b7) - Improve: Smaller stack usage in SHA-256 (#253) (a298be0) - Fix: No `noescape/nocallback` for stateful hashes (f8d321f) - Fix: Violating u32/u64 aliasing (7e55e5c) - Fix: Missing SSE flags for SHA (403b28b) - Improve: `io.Writer` & `hash.Hash64` interface for Go (05f89ca) - Improve: Expose `sz_dispatch_table_init` for Go (5ff7ba1) - Fix: Missing Goldmont & Ice SHA dispatch (e29bded) - Fix: Supporting unaligned SHA-256 states (c770e48) - Fix: Missing `C.sz_checksum` (652735d) - Fix: Hex formatting in Swift on Linux (fc65328) - Improve: SHA for Go, JS, Swift (a165322)
1 parent 794ffc8 commit cc3314d

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

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 0
70+
#define STRINGZILLA_H_VERSION_PATCH 1
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.0",
3+
"version": "4.2.1",
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)