Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -435,7 +435,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, macos-14, windows-2022]
python-version: ["38", "39", "310", "311", "312", "313", "313t"]
python-version: ["38", "39", "310", "311", "312", "313", "313t", "314", "314t"]
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-24.04, macos-14, windows-2022]
python-version: ["38", "39", "310", "311", "312", "313", "313t"]
python-version: ["38", "39", "310", "311", "312", "313", "313t", "314", "314t"]
steps:
- name: Check out refreshed version
uses: actions/checkout@v6
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors:
given-names: "Ash"
orcid: "https://orcid.org/0000-0002-4882-1815"
title: "USearch by Unum Cloud"
version: 2.21.4
version: 2.22.0
doi: 10.5281/zenodo.7949416
date-released: 2023-10-22
url: "https://github.com/unum-cloud/usearch"
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cmake_minimum_required(VERSION 3.11 FATAL_ERROR)
project(
usearch
VERSION 2.21.4
VERSION 2.22.0
LANGUAGES C CXX
DESCRIPTION "Smaller & Faster Single-File Vector Search Engine from Unum"
HOMEPAGE_URL "https://github.com/unum-cloud/usearch"
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,6 +1,6 @@
[package]
name = "usearch"
version = "2.21.4"
version = "2.22.0"
authors = ["Ash Vardanian <1983160+ashvardanian@users.noreply.github.com>"]
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.21.4},
version = {2.22.0},
year = {2023},
month = oct,
}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.21.4
2.22.0
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class USearchConan(ConanFile):

name = "usearch"
version = "2.21.4"
version = "2.22.0"
license = "Apache-2.0"
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
homepage = "https://github.com/unum-cloud/usearch"
Expand Down
2 changes: 1 addition & 1 deletion csharp/nuget/nuget-package.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version Condition="'$(Version)' == ''">2.21.4</Version>
<Version Condition="'$(Version)' == ''">2.22.0</Version>

<Authors>Unum</Authors>
<Company>Unum</Company>
Expand Down
4 changes: 2 additions & 2 deletions include/usearch/index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#define UNUM_USEARCH_HPP

#define USEARCH_VERSION_MAJOR 2
#define USEARCH_VERSION_MINOR 21
#define USEARCH_VERSION_PATCH 4
#define USEARCH_VERSION_MINOR 22
#define USEARCH_VERSION_PATCH 0

// Inferring C++ version
// https://stackoverflow.com/a/61552074
Expand Down
4 changes: 2 additions & 2 deletions java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ repositories {
// Task to download USearch JAR from GitHub releases
task downloadUSearchJar {
doLast {
def usearchVersion = '2.21.4'
def usearchVersion = '2.22.0'
def usearchUrl = "https://github.com/unum-cloud/usearch/releases/download/v${usearchVersion}/usearch-${usearchVersion}.jar"
def usearchFile = file("lib/usearch-${usearchVersion}.jar")

Expand All @@ -38,7 +38,7 @@ compileJava.dependsOn downloadUSearchJar

dependencies {
// USearch JAR from local lib directory (downloaded automatically)
implementation name: 'usearch', version: '2.21.4', ext: 'jar'
implementation name: 'usearch', version: '2.22.0', ext: 'jar'
}
```

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "usearch",
"version": "2.21.4",
"version": "2.22.0",
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
"author": "Ash Vardanian (https://ashvardanian.com/)",
"license": "Apache 2.0",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# - `macos` wheels for x86_64, arm64, and universal2;
# - `windows` wheels for AMD64, and ARM64. But not x86.
# - `manylinux` and `musllinux` wheels for Linux on x86_64, aarch64. But not i686, ppc64le, s390x;
# * for CPython versions from 3.7 to 3.13.
# * for CPython versions from 3.7 to 3.14.
# * for PyPy versions from 3.7 to 3.10.
# = meaning 7 platforms * 11 Python versions = 77 builds.
[build-system]
Expand Down Expand Up @@ -90,4 +90,4 @@ before-build = [
# https://black.readthedocs.io/en/latest/usage_and_configuration/the_basics.html#where-black-looks-for-the-file
[tool.black]
line-length = 120 # Set line length to the same value as in `.clang-format` for modern wide screens
target-version = ['py36', 'py313']
target-version = ['py36', 'py314']
2 changes: 1 addition & 1 deletion wasmer.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unum/usearch"
version = "2.21.4"
version = "2.22.0"
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
license = "Apache-2.0"
readme = "README.md"
Expand Down