diff --git a/CMakeLists.txt b/CMakeLists.txt index 92891736..d72328f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.1) project( stringzilla - VERSION 2.0.4 + VERSION 1.0.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.toml b/Cargo.toml index cb2be7cc..24dbc591 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stringzilla" -version = "2.0.4" +version = "1.0.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 2165f8f9..3eefcb9d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.4 +1.0.0 diff --git a/include/stringzilla/stringzilla.h b/include/stringzilla/stringzilla.h index 82672aa6..3d06001c 100644 --- a/include/stringzilla/stringzilla.h +++ b/include/stringzilla/stringzilla.h @@ -23,9 +23,9 @@ #ifndef STRINGZILLA_H_ #define STRINGZILLA_H_ -#define STRINGZILLA_VERSION_MAJOR 2 +#define STRINGZILLA_VERSION_MAJOR 1 #define STRINGZILLA_VERSION_MINOR 0 -#define STRINGZILLA_VERSION_PATCH 4 +#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 789ada66..637c1b20 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "stringzilla", - "version": "2.0.4", + "version": "1.0.0", "description": "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances", "author": "Ash Vardanian", "license": "Apache 2.0",