Skip to content

Commit

Permalink
Build: Released 2.9.0 [skip ci]
Browse files Browse the repository at this point in the history
# [2.9.0](v2.8.16...v2.9.0) (2024-02-22)

### Add

* SQLite binding ([222de55](222de55))
* String distances to SQLite ([ae4d0f0](ae4d0f0))

### Docs

* Header refreshed ([7465c29](7465c29))
* Py and SQLite extensions ([550624b](550624b))
* README.md link to Joins (#327) ([1279c54](1279c54)), closes [#327](#327)

### Fix

* bug reports were immediately marked invalid ([c5fc825](c5fc825))
* Error handling, mem safety bugs #335 (#339) ([4747ef4](4747ef4)), closes [#335](#335) [#339](#339)
* Passing SQLite tests ([6334983](6334983))
* Reported number of levels ([9b1a06a](9b1a06a))
* Skip non-Linux SQLite tests ([b02d262](b02d262))
* SQLite cosine function + tests ([55464fb](55464fb))
* undefined var error in `remove` api ([8d86a9e](8d86a9e))

### Improve

* Multi property lookup ([e8bf02c](e8bf02c))
* Support multi-column vectors ([66f1716](66f1716))

### Make

* `npi ci` (#330) ([5680920](5680920)), closes [#330](#330)
* Add 3.12 wheels ([d66f697](d66f697))
* Change include paths ([21db294](21db294))
* invalid C++17 Clang arg ([2a6d779](2a6d779))
* Link libpthread for older Linux GCC builds (#324) ([6f1e5dd](6f1e5dd)), closes [#324](#324)
* Parallel CI for Python wheels ([a9ad89e](a9ad89e))
* Upgrade SimSIMD & StringZilla ([5481bdf](5481bdf))

### Revert

* Postpone Apache Arrow integration ([5d040ca](5d040ca))
  • Loading branch information
semantic-release-bot committed Feb 22, 2024
1 parent 4f7d745 commit f38784b
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
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.8.16
version: 2.9.0
doi: 10.5281/zenodo.7949416
date-released: 2023-10-22
url: "https://github.com/unum-cloud/usearch"
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.8.16"
version = "2.9.0"
authors = ["Ash Vardanian <[email protected]>"]
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 @@ -434,7 +434,7 @@ doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.8.16},
version = {2.9.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.8.16
2.9.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.8.16'
version = '2.9.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.8.16</Version>
<Version Condition="'$(Version)' == ''">2.9.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 @@ -10,8 +10,8 @@
#define UNUM_USEARCH_HPP

#define USEARCH_VERSION_MAJOR 2
#define USEARCH_VERSION_MINOR 8
#define USEARCH_VERSION_PATCH 16
#define USEARCH_VERSION_MINOR 9
#define USEARCH_VERSION_PATCH 0

// Inferring C++ version
// https://stackoverflow.com/a/61552074
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": "usearch",
"version": "2.8.16",
"version": "2.9.0",
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
"author": "Ash Vardanian (https://ashvardanian.com/)",
"license": "Apache 2.0",
Expand Down
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.8.16"
version="2.9.0"
description="Smaller & Faster Single-File Vector Search Engine from Unum"
license="Apache-2.0"
readme="README.md"
Expand Down

0 comments on commit f38784b

Please sign in to comment.