chore: release 0.3.2 - #37
Merged
Merged
Conversation
- bump package metadata and current-release docs to 0.3.2 - document the single-writer index lock in troubleshooting Ships #33 (survive concurrent extend writers — vector and chunk insert races), #34 (open corpus filters in semantic_search/place_item), and #35 (single-writer index lock with CLI fail-fast probe).
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: b27a3c3ddb
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Codex review on the release PR: pyproject.toml said 0.3.2 while partial_recall.__version__ — the value `--version` actually prints — stayed at 0.3.1. Bump it, and add a test asserting the two versions match so a release bump can never miss one again.
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.
Patch release assembling the concurrency and correctness fixes on main:
index --extendsurvives concurrent writers: race-safe vector AND chunk inserts (the second race was caught by review on the first); plain rerun after an interrupted extend resumes cleanly.semantic_search/place_itemcorpus filters accept any corpus present in the index; the closed enum made non-built-in corpora unselectable.indexprocess fails fast (before the ~470 MB model load) instead of silently duplicating embedding spend; crash-safe, no stale-lock state.Release mechanics per the v0.3.1 pattern: version bump in
pyproject.toml, README current-release line, walkthrough version echo; troubleshooting gains an entry for the new lock error.