Skip to content

Commit

Permalink
Build: Released 2.5.1 [skip ci]
Browse files Browse the repository at this point in the history
## [2.5.1](v2.5.0...v2.5.1) (2023-09-20)

### Build

* Fix csharp version update in release.yml ([1cc8d1b](1cc8d1b))

### Fix

* Adequate search radius ([4b207d9](4b207d9))

### Improve

* Expose `metric_kind` API ([1d2e039](1d2e039))
* Temporary memory for exact search ([13f9634](13f9634))
* Use `std::shared_mutex` only with C++17 ([4d0daab](4d0daab))

### Make

* Disable AVX512 and SVE on Apple chips ([720cfd2](720cfd2))
* Lighter builds with colored diagnostics ([87135d3](87135d3))
  • Loading branch information
semantic-release-bot committed Sep 20, 2023
1 parent 4913497 commit 2b7e32b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 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.5.0
version: 2.5.1
doi: 10.5281/zenodo.7949416
date-released: 2022-06-12
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.5.0"
version = "2.5.1"
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 @@ -392,7 +392,7 @@ doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.5.0},
version = {2.5.1},
year = {2022},
month = jun,
}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.0
2.5.1
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.5.0'
version = '2.5.1'
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.5.0</Version>
<Version Condition="'$(Version)' == ''">2.5.1</Version>

<Authors>Unum</Authors>
<Company>Unum</Company>
Expand Down
2 changes: 1 addition & 1 deletion include/usearch/index.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#define USEARCH_VERSION_MAJOR 2
#define USEARCH_VERSION_MINOR 5
#define USEARCH_VERSION_PATCH 0
#define USEARCH_VERSION_PATCH 1

// 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.5.0",
"version": "2.5.1",
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
"author": "Ash Vardanian",
"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.5.0"
version="2.5.1"
description="Smaller & Faster Single-File Vector Search Engine from Unum"
license="Apache-2.0"
readme="README.md"
Expand Down

0 comments on commit 2b7e32b

Please sign in to comment.