Skip to content

Commit ba555f6

Browse files
Build: Released 2.7.0 [skip ci]
# [2.7.0](v2.6.1...v2.7.0) (2023-10-13) ### Add * `distance` and `brute_force` C99 APIs ([cf91ef2](cf91ef2)) * `export` function for Rust ([dbf8bd8](dbf8bd8)) * exact search in JS ([53d69b9](53d69b9)) * Shared impl. for parallel exact search ([973e1a1](973e1a1)) * Two-level JS binding ([1218966](1218966)) ### Docs * for C tests ([901fe0f](901fe0f)) * Spelling in `lib.rs` ([9db5351](9db5351)) ### feat * add memory_usage for rust ([d5b40e9](d5b40e9)) ### fix * add index reset for rust ([66ee6e2](66ee6e2)) ### Fix * `equal_iterator_gt` infinite loop ([6ef340f](6ef340f)) * `int main()` args and other warnings ([dedc014](dedc014)) * `metric` argument order in tests ([1237c24](1237c24)) * Argument order ([2a97efb](2a97efb)) * C 99 find condition and linking STL symbols ([2139075](2139075)) * C99 test to expect just one vector for key ([f713b04](f713b04)) * higher tolerance in GoLang tests ([e29a658](e29a658)) * Override `scalar_kind_` for bitwise strings ([dea0ed9](dea0ed9)) * Punned arguments for bitwise metrics ([1ece67b](1ece67b)) * SimSIMD backend selection code ([22318cd](22318cd)) * Tolerance in GoLang tests ([a0e514d](a0e514d)) * Using `scalar_words` for bitwise metrics ([73506b2](73506b2)) ### Improve * wrap-around indexing in the hash-table ([8a0c707](8a0c707)) ### Make * Apple's Clang has no leak sanitizer ([1c2f3b2](1c2f3b2)) * Attach TS docs to JS package ([6f00fd0](6f00fd0)) * Broader testing matrix for OSes/compilers ([72eff5e](72eff5e)) * Change directory and target names ([8e387d9](8e387d9)) * Clean Makefile for C builds ([3544b38](3544b38)) * Disable half-precision by default ([6461df2](6461df2)) * Placeholder for OpenMP on MacOS ([8e0fe0a](8e0fe0a)) * Reduce pre-release dependencies ([f269582](f269582)) * Refresh compilers for pre-release tests ([229b805](229b805)) * Remove Gradle devs section ([0663df5](0663df5)) * Scoping and formatting CMake ([9f7e598](9f7e598)) * Upload to Maven OSSRH repo ([e5a483c](e5a483c)) * Use `-fPIC` by default ([1fc5ff3](1fc5ff3)) * Use `fast-math` flags ([7f1c942](7f1c942)) * Use C++17 for `test` and `bench` ([878e0ae](878e0ae)) * Use OpenMp only on Linux by default ([8fb8dae](8fb8dae)) * Use SimSIMD in JS builds ([d1f5aaf](d1f5aaf)) ### Refactor * C/C++ Tests for Windows ([7175f80](7175f80)) ### Test * Adequate number of bits ([f52b76c](f52b76c)) ### updt * add IndexOptions Clone ([64f923e](64f923e))
1 parent 3421581 commit ba555f6

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Ash"
66
orcid: "https://orcid.org/0000-0002-4882-1815"
77
title: "USearch by Unum Cloud"
8-
version: 2.6.1
8+
version: 2.7.0
99
doi: 10.5281/zenodo.7949416
1010
date-released: 2022-06-12
1111
url: "https://github.com/unum-cloud/usearch"

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "usearch"
3-
version = "2.6.1"
3+
version = "2.7.0"
44
authors = ["Ash Vardanian <[email protected]>"]
55
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
66
edition = "2021"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ doi = {10.5281/zenodo.7949416},
392392
author = {Vardanian, Ash},
393393
title = {{USearch by Unum Cloud}},
394394
url = {https://github.com/unum-cloud/usearch},
395-
version = {2.6.1},
395+
version = {2.7.0},
396396
year = {2022},
397397
month = jun,
398398
}

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.6.1
1+
2.7.0

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
class USearchConan(ConanFile):
88

99
name = "usearch"
10-
version = '2.6.1'
10+
version = '2.7.0'
1111
license = "Apache-2.0"
1212
description = "Smaller & Faster Single-File Vector Search Engine from Unum"
1313
homepage = "https://github.com/unum-cloud/usearch"

csharp/nuget/nuget-package.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project>
33
<PropertyGroup>
4-
<Version Condition="'$(Version)' == ''">2.6.1</Version>
4+
<Version Condition="'$(Version)' == ''">2.7.0</Version>
55

66
<Authors>Unum</Authors>
77
<Company>Unum</Company>

include/usearch/index.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#define UNUM_USEARCH_HPP
1111

1212
#define USEARCH_VERSION_MAJOR 2
13-
#define USEARCH_VERSION_MINOR 6
14-
#define USEARCH_VERSION_PATCH 1
13+
#define USEARCH_VERSION_MINOR 7
14+
#define USEARCH_VERSION_PATCH 0
1515

1616
// Inferring C++ version
1717
// https://stackoverflow.com/a/61552074

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "usearch",
3-
"version": "2.6.1",
3+
"version": "2.7.0",
44
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
55
"author": "Ash Vardanian (https://ashvardanian.com/)",
66
"license": "Apache 2.0",

wasmer.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name="unum/usearch"
3-
version="2.6.1"
3+
version="2.7.0"
44
description="Smaller & Faster Single-File Vector Search Engine from Unum"
55
license="Apache-2.0"
66
readme="README.md"

0 commit comments

Comments
 (0)