Skip to content

Commit

Permalink
Build: Released 2.12.0 [skip ci]
Browse files Browse the repository at this point in the history
# [2.12.0](unum-cloud/usearch@v2.11.7...v2.12.0) (2024-04-29)

### Add

* String-search example ([6dc574f](unum-cloud@6dc574f))

### Docs

* Log running test stages ([48ef5e8](unum-cloud@48ef5e8))
* ObjC & Swift SDK ([b16d85a](unum-cloud@b16d85a))
* Recommend SwiftPM for ObjC ([da84fa2](unum-cloud@da84fa2))

### Fix

* `/EHc` effect on exceptions in MSVC ([d1be7d5](unum-cloud@d1be7d5))
* `metric_jaccard_gt` out-of-bounds ([11e344a](unum-cloud@11e344a))
* Overload resolution in MSVC ([62f9b61](unum-cloud@62f9b61))
* UBSan alignment complaints ([813e992](unum-cloud@813e992))

### Improve

* Safeguard against uninitialized buffers ([689fe19](unum-cloud@689fe19)), closes [ClickHouse/ClickHouse#61780](ClickHouse/ClickHouse#61780)
* Test obscure initializations ([a9525d5](unum-cloud@a9525d5))
* Tests for variable length sets ([7b3b13a](unum-cloud@7b3b13a))

### Make

* Move benchmark docs ([a22ab47](unum-cloud@a22ab47))
  • Loading branch information
semantic-release-bot committed Apr 29, 2024
1 parent f7535f9 commit 5ea48c8
Show file tree
Hide file tree
Showing 9 changed files with 84 additions and 33 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.11.7
version: 2.12.0
doi: 10.5281/zenodo.7949416
date-released: 2023-10-22
url: "https://github.com/unum-cloud/usearch"
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
cmake_minimum_required(VERSION 3.1)
project(
usearch
VERSION 2.11.7
VERSION 2.12.0
LANGUAGES C CXX
DESCRIPTION "Smaller & Faster Single-File Vector Search Engine from Unum"
HOMEPAGE_URL "https://github.com/unum-cloud/usearch"
Expand Down
99 changes: 75 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.11.7"
version = "2.12.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 @@ -471,7 +471,7 @@ doi = {10.5281/zenodo.7949416},
author = {Vardanian, Ash},
title = {{USearch by Unum Cloud}},
url = {https://github.com/unum-cloud/usearch},
version = {2.11.7},
version = {2.12.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.11.7
2.12.0
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.11.7</Version>
<Version Condition="'$(Version)' == ''">2.12.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 @@ -8,8 +8,8 @@
#define UNUM_USEARCH_HPP

#define USEARCH_VERSION_MAJOR 2
#define USEARCH_VERSION_MINOR 11
#define USEARCH_VERSION_PATCH 7
#define USEARCH_VERSION_MINOR 12
#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.11.7",
"version": "2.12.0",
"description": "Smaller & Faster Single-File Vector Search Engine from Unum",
"author": "Ash Vardanian (https://ashvardanian.com/)",
"license": "Apache 2.0",
Expand Down

0 comments on commit 5ea48c8

Please sign in to comment.