diff --git a/CMakeLists.txt b/CMakeLists.txt index e5746e1d..c62613fe 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) project( stringzilla - VERSION 3.8.1 + VERSION 3.8.2 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 4bbfa8a3..a25c40e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7" [[package]] name = "stringzilla" -version = "3.8.1" +version = "3.8.2" dependencies = [ "cc", ] diff --git a/Cargo.toml b/Cargo.toml index 28045d9c..81644bf3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stringzilla" -version = "3.8.1" +version = "3.8.2" 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 f2807196..a08ffae0 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.8.1 +3.8.2 diff --git a/include/stringzilla/stringzilla.h b/include/stringzilla/stringzilla.h index 6e8cbea4..b160c327 100644 --- a/include/stringzilla/stringzilla.h +++ b/include/stringzilla/stringzilla.h @@ -25,7 +25,7 @@ #define STRINGZILLA_VERSION_MAJOR 3 #define STRINGZILLA_VERSION_MINOR 8 -#define STRINGZILLA_VERSION_PATCH 1 +#define STRINGZILLA_VERSION_PATCH 2 /** * @brief When set to 1, the library will include the following LibC headers: and . diff --git a/package.json b/package.json index 2df48a80..dfce2c60 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stringzilla", - "version": "3.8.1", + "version": "3.8.2", "description": "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances", "author": "Ash Vardanian", "license": "Apache 2.0",