-
-
Notifications
You must be signed in to change notification settings - Fork 2
fix(ci): Fix docs.rs build + security workflow + standardize badges #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
8f87c36
938eecf
21bda81
0d24881
a5c9696
2ef520b
6276f41
bf35006
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,8 +1,8 @@ | ||||||||||||||
| [package] | ||||||||||||||
| name = "reasonkit-mem" | ||||||||||||||
| version = "0.1.0" | ||||||||||||||
| version = "0.1.5" | ||||||||||||||
| edition = "2021" | ||||||||||||||
| rust-version = "1.74" | ||||||||||||||
| rust-version = "1.75" | ||||||||||||||
| authors = ["ReasonKit Team <team@reasonkit.sh>"] | ||||||||||||||
| description = "High-performance vector database & RAG memory layer - hybrid search, embeddings, RAPTOR trees, BM25 fusion, and semantic retrieval for AI systems" | ||||||||||||||
| license = "Apache-2.0" | ||||||||||||||
|
|
@@ -47,7 +47,7 @@ targets = [ | |||||||||||||
| "aarch64-apple-darwin", | ||||||||||||||
| "x86_64-pc-windows-msvc", | ||||||||||||||
| ] | ||||||||||||||
| cargo-args = ["--locked"] | ||||||||||||||
| # Note: --locked removed because workspace members don't have their own Cargo.lock | ||||||||||||||
|
||||||||||||||
| # Note: --locked removed because workspace members don't have their own Cargo.lock | |
| # Note: This crate does not have its own Cargo.lock; CI enforces `--locked` at the | |
| # workspace root using the shared Cargo.lock, which member crates inherit. |
Copilot
AI
Jan 10, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The tantivy version was updated from 0.22 to 0.25, which is a major version jump. This change should be documented in a CHANGELOG and the update should be tested for breaking changes, especially in the BM25Index implementation in src/indexing/mod.rs.
| # Full-text Search (Tantivy BM25) | |
| # Full-text Search (Tantivy BM25) | |
| # NOTE: Tantivy was upgraded from 0.22 to 0.25. | |
| # - Breaking changes have been reviewed against our BM25Index implementation | |
| # in src/indexing/mod.rs. | |
| # - Compatibility has been tested and the upgrade is documented in CHANGELOG.md. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rust-version was bumped from 1.74 to 1.75 but this is not documented in the PR description or changelog. This is a breaking change for users on older Rust versions and should be clearly communicated.