Skip to content

Commit e0ca730

Browse files
Build: Released 2.4.1 [skip ci]
## [2.4.1](v2.4.0...v2.4.1) (2023-09-18) ### Build * Conan build issues ([596548e](596548e)) * Conan file updated ([80b3fd4](80b3fd4)) ### Docs * Suggest v3 format ([9667599](9667599)) ### Fix * Dimensions of exact search results ([6675b72](6675b72)) ### Improve * Add new constructor for `USearchIndex` ([eab5acb](eab5acb)) ### Make * Add WASM C lib build action ([5313a4f](5313a4f)) * Publish WASM libs archive hashes ([4121859](4121859)) * Separate option for C tests compilation ([e91ae6a](e91ae6a)) * Set checkout branch ([ea3356d](ea3356d)) ### Refactor * Use stub param in IndexOptions ([348e54a](348e54a)) ### Test * Style improvement and split complex tests ([7c84bc0](7c84bc0))
1 parent eec14ec commit e0ca730

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.4.0
8+
version: 2.4.1
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.4.0"
3+
version = "2.4.1"
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.4.0},
395+
version = {2.4.1},
396396
year = {2022},
397397
month = jun,
398398
}

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.0
1+
2.4.1

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.4.0'
10+
version = '2.4.1'
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.4.0</Version>
4+
<Version Condition="'$(Version)' == ''">2.4.1</Version>
55

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

include/usearch/index.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#define USEARCH_VERSION_MAJOR 2
1313
#define USEARCH_VERSION_MINOR 4
14-
#define USEARCH_VERSION_PATCH 0
14+
#define USEARCH_VERSION_PATCH 1
1515

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

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "usearch",
3-
"version": "2.4.0",
3+
"version": "2.4.1",
44
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
55
"author": "Ash Vardanian",
66
"license": "Apache 2.0",
@@ -25,7 +25,7 @@
2525
"@semantic-release/exec": "^6.0.3",
2626
"@semantic-release/git": "^10.0.1",
2727
"conventional-changelog-eslint": "^3.0.9",
28-
"semantic-release": "^21.1.1",
28+
"semantic-release": "^21.1.2",
2929
"typescript": "^5.1.6"
3030
}
3131
}

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.4.0"
3+
version="2.4.1"
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)