diff --git a/CMakeLists.txt b/CMakeLists.txt index 6003594b..f5ab5f67 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) project( stringzilla - VERSION 3.9.2 + VERSION 3.9.3 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 d0c6eb93..9c1da623 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "d32a725bc159af97c3e629873bb9f88fb8cf8a4867175f76dc987815ea07c83b" [[package]] name = "stringzilla" -version = "3.9.2" +version = "3.9.3" dependencies = [ "cc", ] diff --git a/Cargo.toml b/Cargo.toml index b92e809f..294e3601 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stringzilla" -version = "3.9.2" +version = "3.9.3" 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 2009c7df..820476af 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.9.2 +3.9.3 diff --git a/include/stringzilla/stringzilla.h b/include/stringzilla/stringzilla.h index d7072815..d85dcc87 100644 --- a/include/stringzilla/stringzilla.h +++ b/include/stringzilla/stringzilla.h @@ -25,7 +25,7 @@ #define STRINGZILLA_VERSION_MAJOR 3 #define STRINGZILLA_VERSION_MINOR 9 -#define STRINGZILLA_VERSION_PATCH 2 +#define STRINGZILLA_VERSION_PATCH 3 /** * @brief When set to 1, the library will include the following LibC headers: and . diff --git a/package.json b/package.json index 76765efe..e9c92ad4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stringzilla", - "version": "3.9.2", + "version": "3.9.3", "description": "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances", "author": "Ash Vardanian", "license": "Apache 2.0",