From 152ed046701aceae2c3d4c995b0b661a9aa06d95 Mon Sep 17 00:00:00 2001 From: TinySemVer Date: Sun, 1 Dec 2024 10:11:26 +0000 Subject: [PATCH] Release: v3.11.0 [skip ci] ### Minor - Add: Checksums in Python (1b77de9) - Add: Checksum tests (c2b997c) - Add: Checksum kernels (a99337b) ### Patch - Docs: Simpler Python doc-strings (ad5fa2c) - Fix: `sz_checksum` visibility (9bec0eb) - Fix: Missing `_mm_cvtsi128_si64x` in Clang (c8c6c7c) --- CMakeLists.txt | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- VERSION | 2 +- include/stringzilla/stringzilla.h | 4 ++-- package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3cf30179..93a9b847 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) project( stringzilla - VERSION 3.10.11 + VERSION 3.11.0 LANGUAGES C CXX DESCRIPTION "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances" HOMEPAGE_URL "https://github.com/ashvardanian/stringzilla") diff --git a/Cargo.lock b/Cargo.lock index 17d9819b..51ee02a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b" [[package]] name = "stringzilla" -version = "3.10.11" +version = "3.11.0" dependencies = [ "cc", ] diff --git a/Cargo.toml b/Cargo.toml index 0f1e2637..4a630976 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stringzilla" -version = "3.10.11" +version = "3.11.0" authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"] description = "Faster SIMD-accelerated string search, sorting, fingerprints, and edit distances" edition = "2021" diff --git a/VERSION b/VERSION index 09dcc780..afad8186 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.10.11 +3.11.0 diff --git a/include/stringzilla/stringzilla.h b/include/stringzilla/stringzilla.h index 14a30b7c..bb543e89 100644 --- a/include/stringzilla/stringzilla.h +++ b/include/stringzilla/stringzilla.h @@ -24,8 +24,8 @@ #define STRINGZILLA_H_ #define STRINGZILLA_VERSION_MAJOR 3 -#define STRINGZILLA_VERSION_MINOR 10 -#define STRINGZILLA_VERSION_PATCH 11 +#define STRINGZILLA_VERSION_MINOR 11 +#define STRINGZILLA_VERSION_PATCH 0 /** * @brief When set to 1, the library will include the following LibC headers: and . diff --git a/package.json b/package.json index 5a0a5cdf..23b9abf6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stringzilla", - "version": "3.10.11", + "version": "3.11.0", "description": "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances", "author": "Ash Vardanian", "license": "Apache 2.0",