Skip to content

Commit

Permalink
Merge branch 'main-dev' of https://github.com/ashvardanian/StringZilla
Browse files Browse the repository at this point in the history
…into main-dev
  • Loading branch information
ashvardanian committed Mar 18, 2024
2 parents eb591e9 + f929eee commit f35793a
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 15 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,14 +106,6 @@ jobs:
env:
CC: clang-16
CXX: clang++-16
strategy:
fail-fast: false
matrix:
include:
- arch: amd64
target: x86_64-linux-gnu
- arch: arm64
target: aarch64-linux-gnu

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -253,9 +245,9 @@ jobs:
# We can't run the produced builds, but we can make sure they exist
- name: Test artifacts presense
run: |
test -e build_artifacts/stringzilla_test_cpp20
test -e build_artifacts/libstringzilla.so
test -e build_artifacts/libstringzillite.so
test -e build_artifacts/libstringzilla_shared.so
test -e build_artifacts/stringzilla_test_cpp20
test_macos:
name: MacOS
Expand Down
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.6.6
VERSION 3.6.7
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.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stringzilla"
version = "3.6.6"
version = "3.6.7"
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.6.6
3.6.7
2 changes: 1 addition & 1 deletion include/stringzilla/stringzilla.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

#define STRINGZILLA_VERSION_MAJOR 3
#define STRINGZILLA_VERSION_MINOR 6
#define STRINGZILLA_VERSION_PATCH 6
#define STRINGZILLA_VERSION_PATCH 7

/**
* @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.6.6",
"version": "3.6.7",
"description": "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances",
"author": "Ash Vardanian",
"license": "Apache 2.0",
Expand Down

0 comments on commit f35793a

Please sign in to comment.