From fd565db5fc068e741542576678fd403fb326fcea Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Thu, 25 May 2023 11:38:42 +0000 Subject: [PATCH] Build: Released 0.8.0 [skip ci] # [0.8.0](https://github.com/unum-cloud/usearch/compare/v0.7.0...v0.8.0) (2023-05-25) ### Add * `stats()` gathering interface ([ce0080e](https://github.com/unum-cloud/usearch/commit/ce0080eb9a7ebfec15d7ba3bff5ed7802acfa697)) * New tests and parameter tuning benchmarks ([c110a68](https://github.com/unum-cloud/usearch/commit/c110a68e9431a7045f44dd4f2a3ee3ecba39bc3c)) ### Fix * Safe misaligned data access ([1996614](https://github.com/unum-cloud/usearch/commit/199661457d35ba874f702a51b08613ca1ed446a9)) * UB, wrong length passed ([56936e9](https://github.com/unum-cloud/usearch/commit/56936e9804f127ec9489123de8b14575f80b4942)) ### Make * Default Python to NEON on Arm, AVX2 on x86 ([7a25a89](https://github.com/unum-cloud/usearch/commit/7a25a894811d2f36c97f9f40b3f6c2e77415ac37)) * Produce test builds ([d7d1095](https://github.com/unum-cloud/usearch/commit/d7d109529dcc264145f1354472761cddbac9a391)) * Un-nest binary output path ([4e9658e](https://github.com/unum-cloud/usearch/commit/4e9658e59a23d05d1b2d2bc98bfd518b20e79555)) * Updated Python package layout ([eb91f86](https://github.com/unum-cloud/usearch/commit/eb91f86b84f79f5938b3c1cde70e0b8148613fd0)) ### Refactor * Clean pre-release ([1b18637](https://github.com/unum-cloud/usearch/commit/1b18637f1d7bf245f1e72adc6f1be0fc11ff363e)) * Expose `config()` reference ([d7de510](https://github.com/unum-cloud/usearch/commit/d7de5106575200415b66b4a9754af659773b26e4)) * Using a single atomic bitset ([10044d8](https://github.com/unum-cloud/usearch/commit/10044d8510670c6d4748925ec06d490bae6df4d1)) --- Cargo.toml | 2 +- VERSION | 2 +- conanfile.py | 2 +- package.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 436b3b1c..4ba58393 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "usearch" -version = "0.7.0" +version = "0.8.0" authors = ["Ashot Vardanian <1983160+ashvardanian@users.noreply.github.com>"] description = "Smaller & Faster Single-File Vector Search Engine from Unum" edition = "2021" diff --git a/VERSION b/VERSION index faef31a4..a3df0a69 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.0 +0.8.0 diff --git a/conanfile.py b/conanfile.py index c7aef62e..cfb427ac 100644 --- a/conanfile.py +++ b/conanfile.py @@ -4,7 +4,7 @@ class USearchConan(ConanFile): name = 'USearch' - version = '0.7.0' + version = '0.8.0' license = 'Apache 2.0' url = 'https://github.com/unum-cloud/usearch' description = 'Smaller & Faster Single-File Vector Search Engine from Unum' diff --git a/package.json b/package.json index 3a8c7557..db5a9b25 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "usearch", - "version": "0.7.0", + "version": "0.8.0", "description": "Smaller & Faster Single-File Vector Search Engine from Unum", "author": "Ashot Vardanian", "license": "Apache 2.0",