Skip to content

Commit

Permalink
Release: v3.11.0 [skip ci]
Browse files Browse the repository at this point in the history
### 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)
  • Loading branch information
TinySemVer committed Dec 1, 2024
1 parent d528548 commit 152ed04
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stringzilla"
version = "3.10.11"
version = "3.11.0"
authors = ["Ash Vardanian <[email protected]>"]
description = "Faster SIMD-accelerated string search, sorting, fingerprints, and edit distances"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.10.11
3.11.0
4 changes: 2 additions & 2 deletions include/stringzilla/stringzilla.h
Original file line number Diff line number Diff line change
Expand Up @@ -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: <stddef.h> and <stdint.h>.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit 152ed04

Please sign in to comment.