Skip to content

Commit

Permalink
Merge branch 'main-dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
ashvardanian committed Jun 20, 2024
2 parents d982f77 + b426d30 commit 3e21934
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 28 deletions.
47 changes: 24 additions & 23 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,30 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Set up Cargo
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true

# Semantic Release
- name: Clean npm cache
run: npm cache clean --force
- name: Remove node_modules and package-lock.json
run: rm -rf .github/workflows/node_modules .github/workflows/package-lock.json
- name: Install dependencies
run: npm install --ignore-scripts --legacy-peer-deps --prefix .github/workflows
- name: Verify installation
run: ls -l .github/workflows/node_modules
- name: Verify bin directory
run: ls -l .github/workflows/node_modules/.bin
- name: Run semantic-release
run: npx --prefix .github/workflows semantic-release --no-ci --no-npm --debug

# Automatic versioning is a pain.
#
# - name: Set up Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 20
# - name: Set up Cargo
# uses: actions-rs/toolchain@v1
# with:
# toolchain: stable
# override: true
# - name: Clean npm cache
# run: npm cache clean --force
# - name: Remove node_modules and package-lock.json
# run: rm -rf .github/workflows/node_modules .github/workflows/package-lock.json
# - name: Install dependencies
# run: npm install --ignore-scripts --legacy-peer-deps --prefix .github/workflows
# - name: Verify installation
# run: ls -l .github/workflows/node_modules
# - name: Verify bin directory
# run: ls -l .github/workflows/node_modules/.bin
# - name: Run semantic-release
# run: npx --prefix .github/workflows semantic-release --no-ci --no-npm --debug

rebase:
name: Rebase Dev. Branch
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.14 FATAL_ERROR)
project(
simsimd
VERSION 4.3.1
VERSION 4.4.0
LANGUAGES C CXX
DESCRIPTION "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm"
HOMEPAGE_URL "https://github.com/ashvardanian/simsimd"
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "simsimd"
description = "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm"
version = "4.3.1"
version = "4.4.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.3.1
4.4.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simsimd",
"version": "4.3.1",
"version": "4.4.0",
"description": "Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm",
"homepage": "https://github.com/ashvardanian/simsimd",
"author": "Ash Vardanian",
Expand Down

0 comments on commit 3e21934

Please sign in to comment.