bump version - #55
Conversation
|
Claude finished @The64thRealm's task in 2m 55s —— View job Code Review
Scope: This PR's diff against Findings (1)
Fix is Checked and clean
|
| [package] | ||
| name = "wavedash" | ||
| version = "0.1.92" | ||
| version = "0.1.93" |
There was a problem hiding this comment.
Cargo.lock still records the old version — the wavedash entry at Cargo.lock:3079 is version = "0.1.92", so with this bump the committed lockfile no longer matches the manifest.
Nothing in CI passes --locked, so cargo clippy / cargo test will silently rewrite the lock and still pass, but anyone building the 0.1.93 tag with a frozen lockfile hits it: cargo build --locked (or --offline, or cargo install --locked) fails with error: the lock file .../Cargo.lock needs to be updated but --locked was passed to prevent this. It also means the released tag's lockfile does not record the version actually shipped. The previous release (beade68) kept the two in sync, so this is a regression in that convention.
Fix by regenerating the lock alongside the manifest bump (cargo update -p wavedash --precise 0.1.93, or just cargo check) and committing Cargo.lock.
|
Claude finished @The64thRealm's task in 1m 27s —— View job Code Review
Scope: The full diff against Findings (0)No issues found. The Checked and clean
|
new release bumps pinned play version, adds confirmation before publishing, adds a command to list achievements