chore: bump version to 0.2.2#10
Merged
Merged
Conversation
Releases the indexing progress-bar fix (PR #9) — live parse bar and per-file resolve-phase counters. No code change beyond the version.
Review Summary by QodoBump version to 0.2.2 WalkthroughsDescription• Bump version from 0.2.1 to 0.2.2 • Release indexing progress-bar improvements Diagramflowchart LR
A["Cargo.toml<br/>version 0.2.1"] -- "bump version" --> B["Cargo.toml<br/>version 0.2.2"]
File Changes1. Cargo.toml
|
Code Review by Qodo
1. Cargo.lock not updated
|
| [package] | ||
| name = "synapse" | ||
| version = "0.2.1" | ||
| version = "0.2.2" |
There was a problem hiding this comment.
1. Cargo.lock not updated 🐞 Bug ☼ Reliability
Cargo.toml bumps synapse to 0.2.2 but Cargo.lock still records the root package as 0.2.1, making the lockfile inconsistent with the manifest. CI/release workflows use --locked, so Cargo will fail with “lock file needs to be updated but --locked was passed”.
Agent Prompt
## Issue description
`Cargo.toml` was updated to version 0.2.2, but `Cargo.lock` still contains the root package entry for `synapse` at 0.2.1. Since CI/release runs Cargo with `--locked`, the build/test will fail if the lockfile is considered out-of-date.
## Issue Context
The repo’s CI (`cargo test --locked`) and release workflow (`cargo build --locked`) require a lockfile that matches the manifest.
## Fix Focus Areas
- Cargo.lock[1989-2026]
- .github/workflows/ci.yml[43-46]
- .github/workflows/release.yml[62-66]
## Recommended fix
1. Regenerate/update the lockfile after the version bump (e.g., run `cargo generate-lockfile` or run a normal `cargo build` once to let Cargo rewrite the lockfile).
2. Commit the resulting `Cargo.lock` changes so `--locked` workflows pass.
ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools
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.
Bumps
Cargo.toml/Cargo.lockto 0.2.2 to release the indexing progress-bar fix merged in #9 (live parse bar + per-file resolve-phase counters).The version bump was missed in #9 itself (added after merge), so this is a small follow-up. No code change beyond the version.