Skip to content

Commit 2a54b6a

Browse files
author
TinySemVer
committed
Release: v3.10.0 [skip ci]
1 parent 817de67 commit 2a54b6a

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.1)
22
project(
33
stringzilla
4-
VERSION 3.9.8
4+
VERSION 3.10.0
55
LANGUAGES C CXX
66
DESCRIPTION "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances"
77
HOMEPAGE_URL "https://github.com/ashvardanian/stringzilla")

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stringzilla"
3-
version = "3.9.8"
3+
version = "3.10.0"
44
authors = ["Ash Vardanian <[email protected]>"]
55
description = "Faster SIMD-accelerated string search, sorting, fingerprints, and edit distances"
66
edition = "2021"

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.9.8
1+
3.10.0

include/stringzilla/stringzilla.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
#define STRINGZILLA_H_
2525

2626
#define STRINGZILLA_VERSION_MAJOR 3
27-
#define STRINGZILLA_VERSION_MINOR 9
28-
#define STRINGZILLA_VERSION_PATCH 8
27+
#define STRINGZILLA_VERSION_MINOR 10
28+
#define STRINGZILLA_VERSION_PATCH 0
2929

3030
/**
3131
* @brief When set to 1, the library will include the following LibC headers: <stddef.h> and <stdint.h>.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stringzilla",
3-
"version": "3.9.8",
3+
"version": "3.10.0",
44
"description": "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances",
55
"author": "Ash Vardanian",
66
"license": "Apache 2.0",

0 commit comments

Comments
 (0)