Skip to content

Commit 2ccae45

Browse files
author
TinySemVer
committed
Release: v4.1.0 [skip ci]
### Minor - Add: Nehalem (SSE4.2) CPU support (#247) (2c58385) ### Patch - Fix: Checking for SSE and AES in MSVC (f7d95ad) - Docs: More links & GPU mentions (04d6ae3) - Improve: Reuse AES-NI since Westmere (a3b7cd5) - Fix: Replace Nehalem with Westmere (#249) (fe30683) - Fix: `VAES` debuted in Ice Lake (8cef111)
1 parent 81b7a26 commit 2ccae45

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
@@ -44,7 +44,7 @@
4444
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
4545
project(
4646
stringzilla
47-
VERSION 4.0.15
47+
VERSION 4.1.0
4848
LANGUAGES C CXX ASM
4949
DESCRIPTION "Search, hash, sort, fingerprint, and fuzzy-match strings faster via SWAR, SIMD, and GPGPU"
5050
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.15"
3+
version = "4.1.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.0.15
1+
4.1.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 0
70-
#define STRINGZILLA_H_VERSION_PATCH 15
69+
#define STRINGZILLA_H_VERSION_MINOR 1
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.0.15",
3+
"version": "4.1.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)