[Release] Set version to 0.57.0 - #1378
Merged
Merged
Conversation
Mark Hildebrand (hildebrandmw)
requested review from
a team
and
a lite review from Copilot
September 7, 2026 19:04
Copilot started reviewing on behalf of
Mark Hildebrand (hildebrandmw)
September 7, 2026 19:05
View session
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
The changes are a consistent, repo-wide version bump (Cargo.toml + Cargo.lock) with no remaining references to the prior version detected.
Pull request overview
This release PR updates the Rust workspace/package versions to 0.57.0, aligning the repository’s Cargo metadata and lockfile with the v0.57.0 release described in the PR notes.
Changes:
- Bumped
[workspace.package]version from0.56.0to0.57.0. - Updated internal workspace dependency version pins for all DiskANN crates to
0.57.0. - Regenerated
Cargo.lockentries to reflect the new0.57.0crate versions.
File summaries
| File | Description |
|---|---|
| Cargo.toml | Updates workspace/package version and internal crate dependency version pins to 0.57.0. |
| Cargo.lock | Updates locked workspace crate versions to 0.57.0. |
Review details
- Files reviewed: 1/2 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Suhas Jayaram Subramanya (suhasjs)
approved these changes
Sep 7, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1378 +/- ##
==========================================
- Coverage 91.55% 91.43% -0.13%
==========================================
Files 521 521
Lines 100302 100726 +424
==========================================
+ Hits 91828 92095 +267
- Misses 8474 8631 +157
Flags with carried forward coverage won't be shown. Click here to find out more. 🚀 New features to boost your workflow:
|
juchen-ms (partychen)
approved these changes
Sep 7, 2026
Suryansh Gupta (suri-kumkaran)
approved these changes
Sep 8, 2026
Aditya Krishnan (arkrishn94)
approved these changes
Sep 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Breaking Changes
Flat search visitors are now query-aware (#1359)
flat::FlatIndexhas been removed. The search entry point is now the free functionflat::knn_search, and theDistancesUnorderedvisitor is constructed per-query rather than reused. TheElementRef,QueryComputer, andQueryComputerErrorassociated types and the visitor GAT have also been removed.DistancesUnorderednow yields(id, distance)pairs directly.Migration: Callers of the old
FlatIndex/visitor API should:FlatIndexand construct yourDistancesUnorderedvisitor directly for the query being searched.flat::knn_search(&mut visitor, k, processor, query, &mut output).ElementRef/QueryComputerimplementation, fuse scanning and distance computation directly in yourDistancesUnordered::distances_unorderedimplementation.All Changes
UnalignedSliceSend and Sync. by Mark Hildebrand (@hildebrandmw) in MakeUnalignedSliceSend and Sync. #1348robust_prune. by Mark Hildebrand (@hildebrandmw) in Strengthen arguments torobust_prune. #1358New Contributors
Full Changelog: v0.56.0...v0.57.0