Skip to content

Commit 1016934

Browse files
hildebrandmwMark Hildebrand
andauthored
DiskANN v0.48.0 (#813)
## What's Changed * Expand BetaFilter for External SearchStrategy Implementations by @hailangx in #793 * Enable Miri tests in CI with non-blocking execution by @Copilot in #697 * Increase unit test coverage for diskann-disk crate by @Copilot in #761 * Add code review instructions for license headers by @harsha-simhadri in #801 * Consolidate `load_bin` somewhat by @hildebrandmw in #792 * Add RFC process by @suri-kumkaran in #804 * Fix variance issues with `Mat` and `MatMut`. by @hildebrandmw in #806 * [Bugfix] NeighborPriorityQueue panics, when it is at capacity and NaN distance is inserted by @arrayka in #796 * Enable `cache_only` mode for the BF-Tree cache by @hildebrandmw in #810 * Enable customization of Tokio runtimes in `diskann-benchmark-core` by @hildebrandmw in #809 ## New Contributors * @hailangx made their first contribution in #793 **Full Changelog**: v0.47.0...v0.48.0 Co-authored-by: Mark Hildebrand <mhildebrand@microsoft.com>
1 parent aa5fb99 commit 1016934

2 files changed

Lines changed: 29 additions & 29 deletions

File tree

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ default-members = [
3434
resolver = "3"
3535

3636
[workspace.package]
37-
version = "0.47.0" # Obeying semver
37+
version = "0.48.0" # Obeying semver
3838
description = "DiskANN is a fast approximate nearest neighbor search library for high dimensional data"
3939
authors = ["Microsoft"]
4040
documentation = "https://github.com/microsoft/DiskANN"
@@ -46,22 +46,22 @@ undocumented_unsafe_blocks = "warn"
4646

4747
[workspace.dependencies]
4848
# Base And Numerics
49-
diskann-wide = { path = "diskann-wide", version = "0.47.0" }
50-
diskann-vector = { path = "diskann-vector", version = "0.47.0" }
51-
diskann-linalg = { path = "diskann-linalg", version = "0.47.0" }
52-
diskann-utils = { path = "diskann-utils", default-features = false, version = "0.47.0" }
53-
diskann-quantization = { path = "diskann-quantization", default-features = false, version = "0.47.0" }
54-
diskann-platform = { path = "diskann-platform", version = "0.47.0" }
49+
diskann-wide = { path = "diskann-wide", version = "0.48.0" }
50+
diskann-vector = { path = "diskann-vector", version = "0.48.0" }
51+
diskann-linalg = { path = "diskann-linalg", version = "0.48.0" }
52+
diskann-utils = { path = "diskann-utils", default-features = false, version = "0.48.0" }
53+
diskann-quantization = { path = "diskann-quantization", default-features = false, version = "0.48.0" }
54+
diskann-platform = { path = "diskann-platform", version = "0.48.0" }
5555
# Algorithm
56-
diskann = { path = "diskann", version = "0.47.0" }
56+
diskann = { path = "diskann", version = "0.48.0" }
5757
# Providers
58-
diskann-providers = { path = "diskann-providers", default-features = false, version = "0.47.0" }
59-
diskann-disk = { path = "diskann-disk", version = "0.47.0" }
60-
diskann-label-filter = { path = "diskann-label-filter", version = "0.47.0" }
58+
diskann-providers = { path = "diskann-providers", default-features = false, version = "0.48.0" }
59+
diskann-disk = { path = "diskann-disk", version = "0.48.0" }
60+
diskann-label-filter = { path = "diskann-label-filter", version = "0.48.0" }
6161
# Infra
62-
diskann-benchmark-runner = { path = "diskann-benchmark-runner", version = "0.47.0" }
63-
diskann-benchmark-core = { path = "diskann-benchmark-core", version = "0.47.0" }
64-
diskann-tools = { path = "diskann-tools", version = "0.47.0" }
62+
diskann-benchmark-runner = { path = "diskann-benchmark-runner", version = "0.48.0" }
63+
diskann-benchmark-core = { path = "diskann-benchmark-core", version = "0.48.0" }
64+
diskann-tools = { path = "diskann-tools", version = "0.48.0" }
6565

6666
# External dependencies (shared versions)
6767
anyhow = "1.0.98"

0 commit comments

Comments
 (0)